src/java.desktop/share/native/libjsound/Utilities.c
branchihse-warnings-cflags-branch
changeset 56230 489867818774
parent 47216 71c04702a3d5
equal deleted inserted replaced
56229:0015bf3a82e0 56230:489867818774
    25 
    25 
    26 
    26 
    27 #include "Utilities.h"
    27 #include "Utilities.h"
    28 
    28 
    29 
    29 
    30 int UTIL_IsBigEndianPlatform() {
    30 int UTIL_IsBigEndianPlatform(void) {
    31 #ifdef _LITTLE_ENDIAN
    31 #ifdef _LITTLE_ENDIAN
    32     return 0;
    32     return 0;
    33 #else
    33 #else
    34     return 1;
    34     return 1;
    35 #endif
    35 #endif