]> 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#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 <grp.h>
18#include <inttypes.h>
19#include <langinfo.h>
20#include <limits.h>
21#include <locale.h>
22#include <pthread.h>
23#include <pwd.h>
24#include <regex.h>
25#include <signal.h>
26#include <stdarg.h>
27#include <stdbool.h>
28#include <stddef.h>
29#include <stdint.h>
30#include <stdio.h>
31#include <stdlib.h>
32#include <string.h>
33#include <time.h>
34#include <unistd.h>
35#include <wchar.h>
36
37#include <arpa/inet.h>
38#include <netinet/in.h>
39
40#ifdef __linux__
41#include <sys/auxv.h>
42#include <sys/epoll.h>
43#include <sys/mman.h>
44#include <sys/mount.h>
45#include <sys/prctl.h>
46#include <sys/signalfd.h>
47#include <sys/socket.h>
48#include <sys/stat.h>
49#include <sys/syscall.h>
50#include <sys/time.h>
51#include <sys/types.h>
52#include <sys/un.h>
53#include <sys/wait.h>
54#endif
55
56#if defined(__i386__) || defined(__x86_64__)
57#include <cpuid.h>
58#endif
59
60int main(int argc, char *argv[])
61{
62}