view endianchk.c @ 38:678924af9149

Buildsystem changes, build zaxplay or orig only when the target probably allows it.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 24 May 2010 02:19:13 +0300
parents c3622b53a23e
children
line wrap: on
line source

#include <stdio.h>

int main(int argc, char *argv[])
{
    int val = 1, ret;
    char *s = (char *) &val;
    ret = (int)(*s);
    printf("%s\n", ret ? "-DLITTLE_ENDIAN" : "-DBIG_ENDIAN");
    return 0;
}