]> git.wh0rd.org - home.git/blob - test.c
add some test files
[home.git] / test.c
1 /* Test module for quick hacking. */
2
3 #define _GNU_SOURCE
4
5 #include <assert.h>
6 #include <dirent.h>
7 #include <elf.h>
8 #include <errno.h>
9 #include <fcntl.h>
10 #include <float.h>
11 #include <inttypes.h>
12 #include <langinfo.h>
13 #include <limits.h>
14 #include <locale.h>
15 #include <regex.h>
16 #include <signal.h>
17 #include <stdbool.h>
18 #include <stddef.h>
19 #include <stdint.h>
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <time.h>
24 #include <unistd.h>
25
26 #include <arpa/inet.h>
27 #include <netinet/in.h>
28
29 #include <sys/epoll.h>
30 #include <sys/signalfd.h>
31 #include <sys/socket.h>
32 #include <sys/stat.h>
33 #include <sys/time.h>
34 #include <sys/types.h>
35 #include <sys/un.h>
36 #include <sys/wait.h>
37
38 int main(int argc, char *argv[])
39 {
40 }