Sign in
gnu
/
binutils-gdb
/
0a5954bd5f96dd665cb733b9ab6f2ca67bb4632d
/
.
/
gold
/
testsuite
/
pr22266_main.c
blob: b49b5e1214de78d5db353515a0780e1a343e8707 [
file
] [
log
] [
blame
]
#include
<stdlib.h>
#include
<string.h>
extern
int
*
p_int_from_a_2
;
extern
const
char
*
hello
(
void
);
int
main
(
void
)
{
if
(*
p_int_from_a_2
!=
0x11223344
)
abort
();
if
(
strcmp
(
hello
(),
"Hello, world!"
)
!=
0
)
abort
();
return
0
;
}