Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment