Files
mm/include/attributes.h
T
2023-09-03 17:18:23 -03:00

11 lines
212 B
C

#ifndef ATTRIBUTES_H
#define ATTRIBUTES_H
#if (!defined(__GNUC__) && !defined(__clang__)) || defined(M2CTX) || defined(__sgi)
#ifndef __attribute__
#define __attribute__(x)
#endif
#endif
#endif