mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-04-25 17:16:12 +02:00
6 lines
180 B
C
Executable File
6 lines
180 B
C
Executable File
#if defined(__GNUC__)
|
|
#define PRINTF_ATTRIBUTE(format_pos, arg_pos) __attribute__((format(printf, format_pos, arg_pos)))
|
|
#else
|
|
#define PRINTF_ATTRIBUTE(format_pos, arg_pos)
|
|
#endif
|