seatd/include/compiler.h
2020-08-03 00:57:20 +02:00

12 lines
242 B
C

#ifndef _COMPILER_H
#define _COMPILER_H
#ifdef __GNUC__
#define ATTRIB_PRINTF(start, end) __attribute__((format(printf, start, end)))
#else
#define ATTRIB_PRINTF(start, end)
#endif
#define STRLEN(s) ((sizeof(s) / sizeof(s[0])) - 1)
#endif