mirror of
https://github.com/autc04/Retro68.git
synced 2025-02-20 17:29:17 +00:00
10 lines
129 B
C
10 lines
129 B
C
#ifdef INT
|
|
typedef int ret_t;
|
|
#elif CHAR
|
|
typedef char *ret_t;
|
|
#else
|
|
typedef short *ret_t;
|
|
#endif
|
|
|
|
ret_t FUN (void) { return 0; }
|