Files
my-os-project2/kernel/compiler/attr.h

10 lines
263 B
C

#ifndef COMPILER_ATTR_H_
#define COMPILER_ATTR_H_
#define PACKED __attribute__((packed))
#define ALIGNED(x) __attribute__((aligned((x))))
#define NORETURN __attribute__((noreturn))
#define UNUSED __attribute__((unused))
#endif // COMPILER_ATTR_H_