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