chiark
/
gitweb
/
~mdw
/
disorder
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
--with-gtk-osx option to use native GTK+ on macs
[disorder]
/
server
/
endian.c
1
#include <config.h>
2
#include <stdio.h>
3
4
int main(void) {
5
#if WORDS_BIGENDIAN
6
puts("1");
7
#else
8
puts("0");
9
#endif
10
return 0;
11
}
12
13
/*
14
Local Variables:
15
c-basic-offset:2
16
comment-column:40
17
fill-column:79
18
indent-tabs-mode:nil
19
End:
20
*/