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