1
1

Fixed missed #include's after rebase to current master.

Этот коммит содержится в:
Andrew Borodin 2009-02-27 14:54:26 +03:00 коммит произвёл Andrew Borodin
родитель 05c5d16851
Коммит 5f61e9aaa4
13 изменённых файлов: 17 добавлений и 4 удалений

Просмотреть файл

@ -39,6 +39,7 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/wait.h> /* waitpid() */
#include <unistd.h>
#include <fcntl.h>

Просмотреть файл

@ -28,6 +28,7 @@
#include <config.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>

Просмотреть файл

@ -24,6 +24,7 @@
#include <config.h>
#include <ctype.h>
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>

Просмотреть файл

@ -27,6 +27,7 @@
#include <ctype.h>
#include <errno.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>

Просмотреть файл

@ -47,9 +47,9 @@
#include <ctype.h>
#include <errno.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>

Просмотреть файл

@ -28,9 +28,9 @@
#include <signal.h>
#include <stdarg.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>

Просмотреть файл

@ -36,6 +36,7 @@
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <unistd.h>
#include <pwd.h>

Просмотреть файл

@ -22,6 +22,7 @@
#include <config.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <sys/types.h>

Просмотреть файл

@ -29,13 +29,14 @@
#endif
#include <ctype.h>
#include <stdio.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <signal.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/wait.h>
#ifdef HAVE_SYS_IOCTL_H
# include <sys/ioctl.h>
#endif

Просмотреть файл

@ -24,6 +24,7 @@
#include <ctype.h>
#include <errno.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
@ -47,7 +48,6 @@
#include "dialog.h"
#include "widget.h"
#include "wtools.h"
#include "view.h" /* for default_* externs */
#define MAX_ENTRIES 16

Просмотреть файл

@ -40,6 +40,7 @@
#include <sys/param.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/wait.h>
#ifdef HAVE_SYS_IOCTL_H
# include <sys/ioctl.h>
#endif

Просмотреть файл

@ -34,6 +34,7 @@
#include <assert.h>
#include <ctype.h>
#include <errno.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <fcntl.h>

Просмотреть файл

@ -7,6 +7,10 @@
#ifndef MC_VFS_VFS_H
#define MC_VFS_VFS_H
#include <sys/types.h>
#include <dirent.h>
#include <utime.h>
void vfs_init (void);
void vfs_shut (void);