mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
16 lines
335 B
C
16 lines
335 B
C
|
#ifndef __BASICS_H
|
||
|
#define __BASICS_H
|
||
|
|
||
|
#ifdef __GNUC__
|
||
|
#define GCCPRINTF(stri,firstargi) __attribute__((format(printf,stri,firstargi)))
|
||
|
#define GCCFORMAT(stri) __attribute__((format(printf,stri,0)))
|
||
|
#define GCCNOWARN __attribute__((unused))
|
||
|
#else
|
||
|
#define GCCPRINTF(a,b)
|
||
|
#define GCCFORMAT(a)
|
||
|
#define GCCNOWARN
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#endif
|