mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-27 04:52:05 +08:00
17 lines
171 B
C++
17 lines
171 B
C++
|
#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;
|
||
|
}
|