inline the rest of os_unixx.h into os_unix.c

This commit is contained in:
Stefan Hoffmann 2014-04-21 18:35:17 +02:00 committed by Thiago de Arruda
parent 5f63287f51
commit 320fade350
2 changed files with 16 additions and 29 deletions

View File

@ -57,7 +57,22 @@
#include "os/signal.h"
#include "os/job.h"
#include "os_unixx.h" /* unix includes for os_unix.c only */
#if defined(HAVE_SYS_IOCTL_H)
# include <sys/ioctl.h>
#endif
#ifdef HAVE_STROPTS_H
# include <stropts.h>
#endif
#if defined(HAVE_TERMIOS_H)
# include <termios.h>
#endif
/* shared library access */
#if defined(HAVE_DLFCN_H) && defined(USE_DLOPEN)
# include <dlfcn.h>
#endif
#ifdef HAVE_SELINUX
# include <selinux/selinux.h>

View File

@ -1,28 +0,0 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
*/
/*
* os_unixx.h -- include files that are only used in os_unix.c
*/
#if defined(HAVE_SYS_IOCTL_H)
# include <sys/ioctl.h>
#endif
#ifdef HAVE_STROPTS_H
# include <stropts.h>
#endif
#if defined(HAVE_TERMIOS_H)
# include <termios.h>
#endif
/* shared library access */
#if defined(HAVE_DLFCN_H) && defined(USE_DLOPEN)
# include <dlfcn.h>
#endif