mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-11 18:50:46 +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
|
||||
|
||||
#ifndef _MSC_VER
|
||||
#if defined(__GNUC__) && defined(__i386__)
|
||||
#ifndef __fastcall
|
||||
#define __fastcall __attribute__((fastcall))
|
||||
#endif
|
||||
#else
|
||||
#define __fastcall
|
||||
#endif
|
||||
# if defined(__GNUC__) && defined(__i386__)
|
||||
# ifndef __fastcall
|
||||
# define __fastcall __attribute__((fastcall))
|
||||
# endif
|
||||
# else
|
||||
# define __fastcall
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#ifdef NEDMALLOC
|
||||
#include "nedmalloc.h"
|
||||
# include "nedmalloc.h"
|
||||
#endif
|
||||
|
||||
#ifndef TRUE
|
||||
#define TRUE 1
|
||||
# define TRUE 1
|
||||
#endif
|
||||
|
||||
#ifndef FALSE
|
||||
#define FALSE 0
|
||||
# define FALSE 0
|
||||
#endif
|
||||
|
||||
#define WITHKPLIB
|
||||
|
|
Loading…
Reference in a new issue