uemacs/retcode.h

21 lines
347 B
C
Raw Normal View History

#ifndef __RETCODE_H__
#define __RETCODE_H__
#ifdef FALSE
2016-05-19 06:02:43 +00:00
#error "FALSE shouldn't be defined"
#undef FALSE
#endif
#ifdef TRUE
2016-05-19 06:02:43 +00:00
#error "TRUE shouldn't be defined"
#undef TRUE
#endif
typedef enum {
2016-05-19 06:02:43 +00:00
FALSE, /* 0, false, no, bad, etc. */
TRUE /* 1, true, yes, good, etc. */
} boolean ;
2016-05-19 06:02:43 +00:00
#define ABORT 2 /* 2, death, ^G, abort, etc. */
#endif