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