1
0
mirror of https://github.com/autc04/Retro68.git synced 2025-02-20 17:29:17 +00:00
Wolfgang Thaller f485e125c4 binutils 2.39
2022-10-27 20:45:45 +02:00

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; }