mirror of
https://github.com/reactos/reactos.git
synced 2025-02-20 15:35:04 +00:00
Small fixes for newer MinGW version
svn path=/trunk/; revision=4980
This commit is contained in:
parent
08ce61d1c2
commit
d7ce70741b
3 changed files with 5 additions and 5 deletions
|
@ -33,7 +33,7 @@
|
|||
#include <sys/types.h>
|
||||
#include <sys/param.h>
|
||||
#include <sys/stat.h>
|
||||
#if defined (__MINGW32__) || defined(_MSC_VER)
|
||||
#if defined(_MSC_VER)
|
||||
#include <sys/time.h___>
|
||||
#else
|
||||
#include <time.h>
|
||||
|
|
|
@ -79,7 +79,7 @@
|
|||
#ifdef SCO_FLAVOR
|
||||
# include <sys/timeb.h> /* alex: for struct timeb, used in time.h */
|
||||
#endif /* SCO_FLAVOR */
|
||||
#if defined (__MINGW32__) || defined(_MSC_VER)
|
||||
#if defined(_MSC_VER)
|
||||
#include <sys/time.h___>
|
||||
#else
|
||||
#include <time.h>
|
||||
|
@ -122,7 +122,7 @@ static
|
|||
|
||||
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;
|
||||
|
||||
/* Recursive operation on subdirectories */
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
#include <signal.h> /* my_system */
|
||||
#include <limits.h> /* INT_MAX */
|
||||
#ifndef SCO_FLAVOR
|
||||
#if defined (__MINGW32__) || defined(_MSC_VER)
|
||||
#if defined(_MSC_VER)
|
||||
# include <sys/time.h___>
|
||||
#else
|
||||
# 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 "../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";
|
||||
|
||||
|
|
Loading…
Reference in a new issue