]> git.wh0rd.org - home.git/blame - test.c
crostini-vapier-setup: install edge
[home.git] / test.c
CommitLineData
91523915
MF
1/* Test module for quick hacking. */
2
3#define _GNU_SOURCE
4
91760b4b 5#include <termios.h>
91523915
MF
6#include <assert.h>
7#include <dirent.h>
8#include <elf.h>
cd7a7013 9#include <err.h>
91523915
MF
10#include <errno.h>
11#include <fcntl.h>
12#include <float.h>
91760b4b 13#include <getopt.h>
91523915
MF
14#include <inttypes.h>
15#include <langinfo.h>
16#include <limits.h>
17#include <locale.h>
2be5775d 18#include <pthread.h>
91523915
MF
19#include <regex.h>
20#include <signal.h>
9eafdcc1 21#include <stdarg.h>
91523915
MF
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>
2be5775d 30#include <wchar.h>
91523915
MF
31
32#include <arpa/inet.h>
33#include <netinet/in.h>
34
2be5775d 35#include <sys/auxv.h>
91523915 36#include <sys/epoll.h>
9eafdcc1 37#include <sys/mman.h>
cd7a7013 38#include <sys/mount.h>
2be5775d 39#include <sys/prctl.h>
91523915
MF
40#include <sys/signalfd.h>
41#include <sys/socket.h>
42#include <sys/stat.h>
cd7a7013 43#include <sys/syscall.h>
91523915
MF
44#include <sys/time.h>
45#include <sys/types.h>
46#include <sys/un.h>
47#include <sys/wait.h>
48
cd7a7013
MF
49#if defined(__i386__) || defined(__x86_64__)
50#include <cpuid.h>
51#endif
52
91523915
MF
53int main(int argc, char *argv[])
54{
55}