Files
lambda/util.h
2026-04-02 17:42:04 -07:00

15 lines
268 B
C

#ifndef INCLUDED_MACRO_H
#define INCLUDED_MACRO_H
#ifndef __has_attribute
# define __has_attribute(x) 0
#endif
#if __has_attribute(format)
# define ATTR_FORMAT(...) __attribute__((format(printf, __VA_ARGS__)))
#else
# define ATTR_FORMAT(...)
#endif
#endif