Files
my-os-project2/kernel/compiler/attr.h
2025-08-19 22:51:33 +02:00

8 lines
167 B
C

#ifndef COMPILER_ATTR_H_
#define COMPILER_ATTR_H_
#define PACKED __attribute__((packed))
#define ALIGNED(x) __attribute__((aligned((x))))
#endif // COMPILER_ATTR_H_