mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
40 lines
806 B
C
40 lines
806 B
C
/*
|
|
* $Logfile: /DescentIII/Main/lnxfix.h $
|
|
* $Revision: 1.2 $
|
|
* $Date: 2004/02/09 04:14:49 $
|
|
* $Author: kevinb $
|
|
*
|
|
* File operations not covered properly in ANSI C
|
|
*
|
|
* $Log: lnxfix.h,v $
|
|
* Revision 1.2 2004/02/09 04:14:49 kevinb
|
|
* Added newlines to all headers to reduce number of warnings printed
|
|
*
|
|
* Made some small changes to get everything compiling.
|
|
*
|
|
* All Ready to merge the 1.5 tree.
|
|
*
|
|
* Revision 1.1.1.1 2000/04/18 00:00:32 icculus
|
|
* initial checkin
|
|
*
|
|
*
|
|
* 2 4/15/99 1:39a Jeff
|
|
* changes for linux compile
|
|
*
|
|
* 1 4/14/99 7:51p Jeff
|
|
*
|
|
*
|
|
* $NoKeywords: $
|
|
*/
|
|
|
|
#ifndef LINUX_FIX_H_
|
|
#define LINUX_FIX_H_
|
|
#if defined(__LINUX__)
|
|
|
|
#define stricmp(x, y) strcasecmp(x, y)
|
|
#define _vsnprintf(a, b, c, d) vsnprintf(a, b, c, d)
|
|
|
|
extern bool Dedicated_server;
|
|
#endif
|
|
#endif
|