Commit bcbaeaf7 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

define TRUE and FALSE here as some platforms don't have them otherwise

parent 41be4135
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -57,6 +57,13 @@

#include <stdio.h>

#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif

#ifndef OS
#define OS "unknown"
#endif