mirror of
https://github.com/curl/curl.git
synced 2026-07-31 05:18:04 +03:00
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.
This commit is contained in:
parent
eee3f13134
commit
527850928d
1 changed files with 8 additions and 0 deletions
|
|
@ -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 */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue