Small fixes for newer MinGW version

svn path=/trunk/; revision=4980
This commit is contained in:
Gé van Geldorp 2003-06-27 21:10:35 +00:00
parent 08ce61d1c2
commit d7ce70741b
3 changed files with 5 additions and 5 deletions

View file

@ -33,7 +33,7 @@
#include <sys/types.h> #include <sys/types.h>
#include <sys/param.h> #include <sys/param.h>
#include <sys/stat.h> #include <sys/stat.h>
#if defined (__MINGW32__) || defined(_MSC_VER) #if defined(_MSC_VER)
#include <sys/time.h___> #include <sys/time.h___>
#else #else
#include <time.h> #include <time.h>

View file

@ -79,7 +79,7 @@
#ifdef SCO_FLAVOR #ifdef SCO_FLAVOR
# include <sys/timeb.h> /* alex: for struct timeb, used in time.h */ # include <sys/timeb.h> /* alex: for struct timeb, used in time.h */
#endif /* SCO_FLAVOR */ #endif /* SCO_FLAVOR */
#if defined (__MINGW32__) || defined(_MSC_VER) #if defined(_MSC_VER)
#include <sys/time.h___> #include <sys/time.h___>
#else #else
#include <time.h> #include <time.h>
@ -122,7 +122,7 @@ static
int do_reget; int do_reget;
/* rcsid [] = "$Id: file.c,v 1.1 2001/12/30 09:55:25 sedwards Exp $" */ /* rcsid [] = "$Id: file.c,v 1.2 2003/06/27 21:10:35 gvg Exp $" */
int verbose = 1; int verbose = 1;
/* Recursive operation on subdirectories */ /* Recursive operation on subdirectories */

View file

@ -35,7 +35,7 @@
#include <signal.h> /* my_system */ #include <signal.h> /* my_system */
#include <limits.h> /* INT_MAX */ #include <limits.h> /* INT_MAX */
#ifndef SCO_FLAVOR #ifndef SCO_FLAVOR
#if defined (__MINGW32__) || defined(_MSC_VER) #if defined(_MSC_VER)
# include <sys/time.h___> # include <sys/time.h___>
#else #else
# include <sys/time.h> /* alex: sys/select.h defines struct timeval */ # include <sys/time.h> /* alex: sys/select.h defines struct timeval */
@ -88,7 +88,7 @@ int message (int error, char *header, char *text, ...);
#include "user.h" /* expand_format */ #include "user.h" /* expand_format */
#include "../vfs/vfs.h" #include "../vfs/vfs.h"
/* "$Id: util.c,v 1.1 2001/12/30 09:55:20 sedwards Exp $" */ /* "$Id: util.c,v 1.2 2003/06/27 21:10:35 gvg Exp $" */
char app_text [] = "Midnight-Commander"; char app_text [] = "Midnight-Commander";