support little-endian bitmaps
[tridge/junkcode.git] / host.c
1 #include <stdio.h>
2 #include <unistd.h>
3
4 main()
5 {
6         char buf[1024];
7         gethostname(buf, sizeof(buf)-1);
8         puts(buf);
9 }