mirror of
https://github.com/tmux/tmux.git
synced 2025-04-04 07:08:50 +00:00
Remove some unnecessary includes and fix a typo.
This commit is contained in:
parent
2e98c9057d
commit
bce952777a
1
cfg.c
1
cfg.c
@ -17,7 +17,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/stat.h>
|
|
||||||
|
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
2
client.c
2
client.c
@ -25,8 +25,6 @@
|
|||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <event.h>
|
#include <event.h>
|
||||||
#include <fcntl.h>
|
|
||||||
#include <pwd.h>
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
@ -18,10 +18,6 @@
|
|||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
#include <pwd.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
|
|
||||||
#include "tmux.h"
|
#include "tmux.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -20,7 +20,6 @@
|
|||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <pwd.h>
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <termios.h>
|
#include <termios.h>
|
||||||
|
@ -28,8 +28,8 @@
|
|||||||
* options. These tables are the master copy of the options with their real
|
* options. These tables are the master copy of the options with their real
|
||||||
* (user-visible) types, range limits and default values. At start these are
|
* (user-visible) types, range limits and default values. At start these are
|
||||||
* copied into the runtime global options trees (which only has number and
|
* copied into the runtime global options trees (which only has number and
|
||||||
* string types). These tables are then used to loop up the real type when
|
* string types). These tables are then used to look up the real type when the
|
||||||
* the user sets an option or its value needs to be shown.
|
* user sets an option or its value needs to be shown.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Choice option type lists. */
|
/* Choice option type lists. */
|
||||||
|
4
window.c
4
window.c
@ -17,14 +17,10 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/ioctl.h>
|
|
||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <fnmatch.h>
|
#include <fnmatch.h>
|
||||||
#include <paths.h>
|
|
||||||
#include <pwd.h>
|
|
||||||
#include <signal.h>
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
Loading…
Reference in New Issue
Block a user