blob: 1a18404ca407dbbafd75b0b0d99b5573c6bef3ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <stdio.h>
#include "pr12942a.h"
extern "C" void abort ();
test_t b(void);
int
main(void)
{
if (test != b ())
abort ();
printf ("OK\n");
return 0;
}
|