Skip to content
Snippets Groups Projects
Commit 52785092 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Define TRUE and FALSE unless already present. I've moved away those

definitions from the global curl header and thus this needs to do it
themselves.
parent eee3f131
No related branches found
No related tags found
No related merge requests found
......@@ -8,5 +8,13 @@
#include <stdio.h>
#include <string.h>
#ifndef FALSE
#define FALSE 0
#endif
#ifndef TRUE
#define TRUE 1
#endif
extern char *arg2; /* set by first.c to the argv[2] or NULL */
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