Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
valgrind
/
fa0a7f4269d9eab3731ff1f6fc7b9e4145087d43
/
.
/
tests
/
is_ppc64_BE.c
blob: 6c12fb352461535f62371cc861a41731c0caf9a1 [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<stdlib.h>
#include
<string.h>
// This program returns 0 if executing on ppc64 big endian; otherwise returns 1
int
main
(
void
)
{
#if defined(VGP_ppc64be_linux)
return
0
;
#else
return
1
;
#endif
}