Export TRUE/FALSE

SVN revision: 16620
This commit is contained in:
sebastid 2005-09-06 19:26:19 +00:00 committed by sebastid
parent e7aae96593
commit 24fac015c6
2 changed files with 8 additions and 8 deletions

View File

@ -43,6 +43,14 @@
#include <sys/types.h>
#include <signal.h>
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
#ifdef __cplusplus
extern "C" {
#endif

View File

@ -27,14 +27,6 @@
#define __UNUSED__
#endif
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
#ifndef PATH_MAX
#define PATH_MAX 4096
#endif