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