]> git.wh0rd.org - home.git/blame - test.c
dict: add more words
[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>
9eafdcc1 19#include <stdarg.h>
91523915
MF
20#include <stdbool.h>
21#include <stddef.h>
22#include <stdint.h>
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26#include <time.h>
27#include <unistd.h>
2be5775d 28#include <wchar.h>
91523915
MF
29
30#include <arpa/inet.h>
31#include <netinet/in.h>
32
2be5775d 33#include <sys/auxv.h>
91523915 34#include <sys/epoll.h>
9eafdcc1 35#include <sys/mman.h>
cd7a7013 36#include <sys/mount.h>
2be5775d 37#include <sys/prctl.h>
91523915
MF
38#include <sys/signalfd.h>
39#include <sys/socket.h>
40#include <sys/stat.h>
cd7a7013 41#include <sys/syscall.h>
91523915
MF
42#include <sys/time.h>
43#include <sys/types.h>
44#include <sys/un.h>
45#include <sys/wait.h>
46
cd7a7013
MF
47#if defined(__i386__) || defined(__x86_64__)
48#include <cpuid.h>
49#endif
50
91523915
MF
51int main(int argc, char *argv[])
52{
53}