blob: 6c12fb352461535f62371cc861a41731c0caf9a1 [file] [log] [blame]
carlldd690bf2014-08-07 23:49:27 +00001#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
7int main(void)
8{
9#if defined(VGP_ppc64be_linux)
10 return 0;
11#else
12 return 1;
13#endif
14}