repo.or.cz
/
binutils-gdb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[gdb/tui] Introduce translate_acs
[binutils-gdb.git]
/
gold
/
testsuite
/
pr22266_main.c
blob
b49b5e1214de78d5db353515a0780e1a343e8707
1
#include <stdlib.h>
2
#include <string.h>
3
4
extern
int
*
p_int_from_a_2
;
5
extern
const char
*
hello
(
void
);
6
7
int
main
(
void
) {
8
if
(*
p_int_from_a_2
!=
0x11223344
)
9
abort
();
10
if
(
strcmp
(
hello
(),
"Hello, world!"
) !=
0
)
11
abort
();
12
return
0
;
13
}