1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-01-26 23:32:58 +00:00
llvm-6502/test/CFrontend/2002-07-14-MiscTests2.c

12 lines
130 B
C
Raw Normal View History

// Test ?: in function calls
extern fp(int, char*);
char *Ext;
void
__bb_exit_func (void)
{
fp (12, Ext ? Ext : "<none>");
}