mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-07 05:21:12 +00:00
15 lines
408 B
C
15 lines
408 B
C
#pragma once
|
|
|
|
// Just to let the ZDoom-based code print to the Build console without changing it all
|
|
|
|
#if defined __GNUC__ || defined __clang__
|
|
# define ATTRIBUTE(attrlist) __attribute__(attrlist)
|
|
#else
|
|
# define ATTRIBUTE(attrlist)
|
|
#endif
|
|
|
|
void OSD_Printf(const char *fmt, ...) ATTRIBUTE((format(printf,1,2)));
|
|
#define Printf OSD_Printf
|
|
|
|
void I_Error(const char *fmt, ...) ATTRIBUTE((format(printf,1,2)));
|
|
|