]> 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 967ded3c453b8136d33c024900b7873c947ec35a..45d61247dea843dd717cbe2b03ce43b32cc65fb2 100644 (file)
--- a/test.c
+++ b/test.c
@@ -2,12 +2,15 @@
 
 #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>
@@ -15,6 +18,7 @@
 #include <pthread.h>
 #include <regex.h>
 #include <signal.h>
+#include <stdarg.h>
 #include <stdbool.h>
 #include <stddef.h>
 #include <stdint.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[])
 {
 }