summaryrefslogtreecommitdiffstats
path: root/Modules/TestBigEndian.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/TestBigEndian.c')
-rw-r--r--Modules/TestBigEndian.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/Modules/TestBigEndian.c b/Modules/TestBigEndian.c
index 97647ed..db08ceb 100644
--- a/Modules/TestBigEndian.c
+++ b/Modules/TestBigEndian.c
@@ -1,5 +1,10 @@
-int main (int ac, char*av[]) {
- int ret = 1;
+#ifdef __CLASSIC_C__
+int main(){
+ int ac;
+ char*av[];
+#else
+int main(int ac, char*av[]){
+#endif
/* Are we little or big endian? From Harbison&Steele. */
union
{
@@ -7,9 +12,6 @@ int main (int ac, char*av[]) {
char c[sizeof (long)];
} u;
u.l = 1;
- if(ac > 100)
- {
- ret = *av[0];
- }
- return (u.c[sizeof (long) - 1] == 1)?ret:0;
+ if(ac > 1000){return *av[0];}
+ return (u.c[sizeof (long) - 1] == 1)?1:0;
}