From c0dbc791e6f80c46b9a4a39428e93bba2cf5279e Mon Sep 17 00:00:00 2001 From: cosmonaut Date: Tue, 30 Jan 2024 17:39:41 -0800 Subject: [PATCH] define separator on apple --- include/cram.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/cram.h b/include/cram.h index fe12de1..55e693a 100644 --- a/include/cram.h +++ b/include/cram.h @@ -54,6 +54,10 @@ #define SEPARATOR '/' #endif +#ifdef __APPLE__ +#define SEPARATOR '/' +#endif + #ifndef max #define max(x, y) (((x) > (y)) ? (x) : (y)) #endif