Tidy up some includes.

This commit is contained in:
nicm
2014-10-20 23:27:14 +00:00
parent 30bacf6f30
commit 900f6fc17e
12 changed files with 20 additions and 15 deletions

5
tmux.h
View File

@ -21,7 +21,6 @@
#define PROTOCOL_VERSION 8
#include <sys/param.h>
#include <sys/time.h>
#include <sys/queue.h>
#include <sys/tree.h>
@ -29,10 +28,8 @@
#include <bitstring.h>
#include <event.h>
#include <getopt.h>
#include <imsg.h>
#include <limits.h>
#include <signal.h>
#include <stdarg.h>
#include <stdint.h>
#include <stdio.h>
@ -1565,7 +1562,7 @@ extern char *cfg_file;
extern char *shell_cmd;
extern int debug_level;
extern time_t start_time;
extern char socket_path[MAXPATHLEN];
extern char socket_path[PATH_MAX];
extern int login_shell;
extern char *environ_path;
void logfile(const char *);