mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-24 07:10:44 -04:00
11 lines
212 B
C
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
|