aboutsummaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
authorDevin J. Pohly <djpohly@gmail.com>2018-02-24 16:45:42 -0600
committerDevin J. Pohly <djpohly@gmail.com>2018-02-25 21:56:26 -0600
commit403c57ebb5b3745ff93e49b87e526c49dc59a5b9 (patch)
tree9eccc6e9cc3bea0917420250c767fb318a0408e6 /st.c
parente0215d53770a9b6bc6e5d7b9a603ecd34dbd7100 (diff)
downloadst-403c57ebb5b3745ff93e49b87e526c49dc59a5b9.tar.gz
st-403c57ebb5b3745ff93e49b87e526c49dc59a5b9.tar.bz2
Clean up #includes
Signed-off-by: Devin J. Pohly <djpohly@gmail.com>
Diffstat (limited to 'st.c')
-rw-r--r--st.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/st.c b/st.c
index f46aab6..543c615 100644
--- a/st.c
+++ b/st.c
@@ -3,24 +3,17 @@
#include <errno.h>
#include <fcntl.h>
#include <limits.h>
-#include <locale.h>
#include <pwd.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>
-#include <stdint.h>
#include <sys/ioctl.h>
#include <sys/select.h>
-#include <sys/stat.h>
-#include <sys/time.h>
#include <sys/types.h>
#include <sys/wait.h>
-#include <termios.h>
-#include <time.h>
#include <unistd.h>
-#include <libgen.h>
#include <wchar.h>
#include "st.h"