vgdb: Handle EAGAIN in read_buf
[valgrind.git] / tests / is_ppc64_BE.c
blob6c12fb352461535f62371cc861a41731c0caf9a1
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
5 // This program returns 0 if executing on ppc64 big endian; otherwise returns 1
7 int main(void)
9 #if defined(VGP_ppc64be_linux)
10 return 0;
11 #else
12 return 1;
13 #endif