mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 23:32:06 +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 ();
|
|
}
|