mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-26 00:40:56 +00:00
compat.h: tweak indentation of some preprocessing directives.
git-svn-id: https://svn.eduke32.com/eduke32@2992 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
72b73f6356
commit
202d544f14
1 changed files with 10 additions and 10 deletions
|
@ -30,25 +30,25 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef _MSC_VER
|
#ifndef _MSC_VER
|
||||||
#if defined(__GNUC__) && defined(__i386__)
|
# if defined(__GNUC__) && defined(__i386__)
|
||||||
#ifndef __fastcall
|
# ifndef __fastcall
|
||||||
#define __fastcall __attribute__((fastcall))
|
# define __fastcall __attribute__((fastcall))
|
||||||
#endif
|
# endif
|
||||||
#else
|
# else
|
||||||
#define __fastcall
|
# define __fastcall
|
||||||
#endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef NEDMALLOC
|
#ifdef NEDMALLOC
|
||||||
#include "nedmalloc.h"
|
# include "nedmalloc.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef TRUE
|
#ifndef TRUE
|
||||||
#define TRUE 1
|
# define TRUE 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef FALSE
|
#ifndef FALSE
|
||||||
#define FALSE 0
|
# define FALSE 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define WITHKPLIB
|
#define WITHKPLIB
|
||||||
|
|
Loading…
Reference in a new issue