1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

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

This commit is contained in:
Daniel Stenberg 2003-11-07 07:02:35 +00:00
parent 41be41358e
commit bcbaeaf7d5

View File

@ -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