repo.or.cz
/
valgrind.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
drd/tests: Add the "dlopen" test program
[valgrind.git]
/
tests
/
is_ppc64_BE.c
blob
6c12fb352461535f62371cc861a41731c0caf9a1
1
#include <stdio.h>
2
#include <stdlib.h>
3
#include <string.h>
4
5
// This program returns 0 if executing on ppc64 big endian; otherwise returns 1
6
7
int
main
(
void
)
8
{
9
#if defined(VGP_ppc64be_linux)
10
return
0
;
11
#else
12
return
1
;
13
#endif
14
}