Compare commits

...

1 Commits
1.1.1 ... main

Author SHA1 Message Date
cosmonaut c0dbc791e6 define separator on apple
continuous-integration/drone/push Build is passing Details
2024-01-30 17:39:41 -08:00
1 changed files with 4 additions and 0 deletions

View File

@ -54,6 +54,10 @@
#define SEPARATOR '/'
#endif
#ifdef __APPLE__
#define SEPARATOR '/'
#endif
#ifndef max
#define max(x, y) (((x) > (y)) ? (x) : (y))
#endif