mirror of
https://github.com/rfivet/uemacs.git
synced 2024-12-20 00:06:45 -05:00
Add retcode.h missing from commit d17334e3ae.
This commit is contained in:
parent
669b7396d4
commit
226c63b63a
25
retcode.h
Normal file
25
retcode.h
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
#ifndef __RETCODE_H__
|
||||||
|
#define __RETCODE_H__
|
||||||
|
|
||||||
|
#ifdef FALSE
|
||||||
|
#undef FALSE
|
||||||
|
#endif
|
||||||
|
#ifdef TRUE
|
||||||
|
#undef TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
#define FALSE 0 /* False, no, bad, etc. */
|
||||||
|
#define TRUE 1 /* True, yes, good, etc. */
|
||||||
|
#define ABORT 2 /* Death, ^G, abort, etc. */
|
||||||
|
#define FAILED 3 /* not-quite fatal false return */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
FALSE,
|
||||||
|
TRUE
|
||||||
|
} boolean ;
|
||||||
|
|
||||||
|
#define ABORT 2
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in New Issue
Block a user