Minor changes for IBM CSet.

#include <direct.h> is not needed anymore
We need #include <io.h> somewhere
This commit is contained in:
Pavel Machek 1998-03-29 22:23:24 +00:00
parent 2b79792d85
commit 303cd55bce
10 changed files with 15 additions and 24 deletions

View File

@ -31,10 +31,6 @@
#include "mousemark.h"
#endif
#ifdef __os2__
# include <direct.h>
#endif
#ifndef MIDNIGHT
extern int EditExposeRedraw;

View File

@ -39,6 +39,10 @@
#include <fcntl.h> /* open, O_RDWR */
#include <errno.h>
#ifdef OS2_NT
# include <io.h>
#endif
#ifdef USE_NETCODE
#include <netdb.h>
#endif

View File

@ -22,9 +22,8 @@
#include "tty.h"
#include <string.h>
#include <stdio.h>
#ifdef __os2__
#ifdef OS2_NT
# include <io.h>
# include <direct.h>
#endif
#include "fs.h"
#include <malloc.h> /* For free() */

View File

@ -46,7 +46,6 @@
# include <pwd.h>
#else
# include <io.h>
# include <direct.h>
#endif
#include "tty.h"
#include "mad.h"

View File

@ -31,8 +31,6 @@
# define INCL_DOSFILEMGR
# define INCL_DOSERRORS
# include <os2.h>
# include <io.h>
# include <direct.h>
#endif
#include "tty.h"
@ -126,6 +124,7 @@
#include "chown.h"
#ifdef OS2_NT
# include <io.h>
# include <drive.h>
#endif
@ -2702,10 +2701,7 @@ compatibility_move_mc_files (void)
int main (int argc, char *argv [])
{
#ifdef OS2_NT
char *drv;
char *drv_path;
#else
#ifndef OS2_NT
/* Backward compatibility: Gives up privileges in case someone
installed the mc as setuid */
setuid (getuid ());

View File

@ -23,9 +23,6 @@
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#ifdef __os2__
# include <direct.h>
#endif
#include <string.h>
#include <stdio.h>
#include <stdlib.h> /* For malloc() */

View File

@ -20,6 +20,9 @@
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#ifdef OS2_NT
# include <io.h>
#endif
#include "popt.h"

View File

@ -21,9 +21,6 @@
#include <config.h>
#include "tty.h"
#include "fs.h"
#ifdef __os2__
# include <direct.h>
#endif
#include <sys/param.h>
#include <string.h>
#include <stdlib.h> /* For malloc() and free() */

View File

@ -27,9 +27,6 @@
*/
#include <config.h>
#ifdef __os2__
# include <direct.h>
#endif
#include <sys/types.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
@ -60,6 +57,9 @@
#include "tree.h"
#include "cmd.h"
#include "../vfs/vfs.h"
#ifdef OS2_NT
# include <io.h>
#endif
extern int command_prompt;

View File

@ -27,8 +27,8 @@
#include <config.h>
#include "x.h"
#include <stdio.h>
#ifdef __os2__
# include <io.h>
#ifdef OS2_NT
# include <io.h>
#endif
#include <sys/types.h>
#ifdef HAVE_UNISTD_H