mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-25 14:34:29 +00:00
12 lines
103 B
C
12 lines
103 B
C
|
#include <stdlib.h>
|
||
|
|
||
|
extern int foo;
|
||
|
int foo2 = 2;
|
||
|
|
||
|
void
|
||
|
bar (void)
|
||
|
{
|
||
|
if (foo != 30)
|
||
|
abort ();
|
||
|
}
|