Skip to content

Instantly share code, notes, and snippets.

@h-east
Created September 29, 2011 10:06
Show Gist options
  • Save h-east/1250432 to your computer and use it in GitHub Desktop.
Save h-east/1250432 to your computer and use it in GitHub Desktop.
a part of general.h of exuberant ctags from http://ctags.sourceforge.net/ (GPL code)
#undef FALSE
#undef TRUE
#ifdef VAXC
typedef enum { FALSE, TRUE } booleanType;
typedef int boolean;
#else
# ifdef __cplusplus
typedef bool boolean;
#define FALSE false
#define TRUE true
# else
typedef enum { FALSE, TRUE } boolean;
# endif
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment