]> git.wh0rd.org - home.git/blob - test.c
cros-board: update
[home.git] / test.c
1 /* Test module for quick hacking. */
2
3 #define _GNU_SOURCE
4 #define _LARGEFILE_SOURCE
5 #define _LARGEFILE64_SOURCE
6 #define _FILE_OFFSET_BITS 64
7
8 #include <termios.h>
9 #include <assert.h>
10 #include <dirent.h>
11 #include <elf.h>
12 #include <err.h>
13 #include <errno.h>
14 #include <fcntl.h>
15 #include <float.h>
16 #include <getopt.h>
17 #include <inttypes.h>
18 #include <langinfo.h>
19 #include <limits.h>
20 #include <locale.h>
21 #include <pthread.h>
22 #include <regex.h>
23 #include <signal.h>
24 #include <stdarg.h>
25 #include <stdbool.h>
26 #include <stddef.h>
27 #include <stdint.h>
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <time.h>
32 #include <unistd.h>
33 #include <wchar.h>
34
35 #include <arpa/inet.h>
36 #include <netinet/in.h>
37
38 #include <sys/auxv.h>
39 #include <sys/epoll.h>
40 #include <sys/mman.h>
41 #include <sys/mount.h>
42 #include <sys/prctl.h>
43 #include <sys/signalfd.h>
44 #include <sys/socket.h>
45 #include <sys/stat.h>
46 #include <sys/syscall.h>
47 #include <sys/time.h>
48 #include <sys/types.h>
49 #include <sys/un.h>
50 #include <sys/wait.h>
51
52 #if defined(__i386__) || defined(__x86_64__)
53 #include <cpuid.h>
54 #endif
55
56 int main(int argc, char *argv[])
57 {
58 }