xref: /netbsd-src/external/gpl3/gdb.old/dist/libctf/testsuite/libctf-regression/libctf-repeat-cu-lib.c (revision 6881a4007f077b54e5f51159c52b9b25f57deb0d)
1*6881a400Schristos #ifdef INT
2*6881a400Schristos typedef int ret_t;
3*6881a400Schristos #elif CHAR
4*6881a400Schristos typedef char *ret_t;
5*6881a400Schristos #else
6*6881a400Schristos typedef short *ret_t;
7*6881a400Schristos #endif
8*6881a400Schristos 
9*6881a400Schristos ret_t FUN (void) { return 0; }
10