1
0
mirror of https://github.com/ioacademy-jikim/debugging synced 2025-06-08 16:36:21 +00:00
2015-12-13 22:34:58 +09:00

15 lines
230 B
C

#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
}