]> git.wh0rd.org - home.git/blobdiff - test.c
PS1: shorten slightly & add PS0 recovery
[home.git] / test.c
diff --git a/test.c b/test.c
index 8501a90426cdf6caecddcd7184a70ea6114bce09..45d61247dea843dd717cbe2b03ce43b32cc65fb2 100644 (file)
--- a/test.c
+++ b/test.c
@@ -2,18 +2,23 @@
 
 #define _GNU_SOURCE
 
+#include <termios.h>
 #include <assert.h>
 #include <dirent.h>
 #include <elf.h>
+#include <err.h>
 #include <errno.h>
 #include <fcntl.h>
 #include <float.h>
+#include <getopt.h>
 #include <inttypes.h>
 #include <langinfo.h>
 #include <limits.h>
 #include <locale.h>
+#include <pthread.h>
 #include <regex.h>
 #include <signal.h>
+#include <stdarg.h>
 #include <stdbool.h>
 #include <stddef.h>
 #include <stdint.h>
 #include <string.h>
 #include <time.h>
 #include <unistd.h>
+#include <wchar.h>
 
 #include <arpa/inet.h>
 #include <netinet/in.h>
 
+#include <sys/auxv.h>
 #include <sys/epoll.h>
+#include <sys/mman.h>
+#include <sys/mount.h>
+#include <sys/prctl.h>
 #include <sys/signalfd.h>
 #include <sys/socket.h>
 #include <sys/stat.h>
+#include <sys/syscall.h>
 #include <sys/time.h>
 #include <sys/types.h>
 #include <sys/un.h>
 #include <sys/wait.h>
 
+#if defined(__i386__) || defined(__x86_64__)
+#include <cpuid.h>
+#endif
+
 int main(int argc, char *argv[])
 {
 }