mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 23:32:06 +00:00
13 lines
182 B
C
13 lines
182 B
C
extern void link_error ();
|
|
|
|
inline int test (void)
|
|
{
|
|
int exp = -1;
|
|
if ((exp < 2 ? 2U : (unsigned int) exp) != 2)
|
|
link_error ();
|
|
|
|
return 0;
|
|
}
|
|
|
|
typedef int (*test_t) (void);
|