(Jack:) Don't define TRUE and FALSE if already defined.

This commit is contained in:
Guido van Rossum 1997-04-11 19:19:46 +00:00
parent 6976a52099
commit 62bf108392

View file

@ -28,9 +28,12 @@
#include <string.h>
#define bool int
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
bool opterr = TRUE; /* generate error messages */
int optind = 1; /* index into argv array */