diff options
| author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2015-10-15 21:42:17 +0100 |
|---|---|---|
| committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2015-10-15 21:42:17 +0100 |
| commit | c06c14fb299549adeb32c5021032374686e5d682 (patch) | |
| tree | bf343b55d8a306588780596eaa48db5564dedbfe | |
| parent | 716550021eeda39c8afd5b6aa4fde18e6969679b (diff) | |
| download | rtmux-c06c14fb299549adeb32c5021032374686e5d682.tar.gz rtmux-c06c14fb299549adeb32c5021032374686e5d682.tar.bz2 rtmux-c06c14fb299549adeb32c5021032374686e5d682.zip | |
Some header fixes.
| -rw-r--r-- | job.c | 2 | ||||
| -rw-r--r-- | log.c | 2 | ||||
| -rw-r--r-- | screen.c | 1 | ||||
| -rw-r--r-- | tmux.c | 2 |
4 files changed, 3 insertions, 4 deletions
@@ -20,10 +20,10 @@ #include <sys/socket.h> #include <fcntl.h> +#include <signal.h> #include <stdlib.h> #include <string.h> #include <unistd.h> -#include <signal.h> #include "tmux.h" @@ -17,12 +17,12 @@ */ #include <sys/types.h> -#include <time.h> #include <errno.h> #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <time.h> #include "tmux.h" @@ -18,7 +18,6 @@ #include <sys/types.h> -#include <netdb.h> #include <stdlib.h> #include <string.h> #include <unistd.h> @@ -26,8 +26,8 @@ #include <pwd.h> #include <stdlib.h> #include <string.h> -#include <unistd.h> #include <time.h> +#include <unistd.h> #include "tmux.h" |