mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-24 12:35:55 +08: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; }
|