Implement syscalls, hello world from userspace
This commit is contained in:
@ -1,8 +1,9 @@
|
||||
#ifndef COMPILER_ATTR_H_
|
||||
#define COMPILER_ATTR_H_
|
||||
|
||||
#define PACKED __attribute__((packed))
|
||||
#define ALIGNED(x) __attribute__((aligned((x))))
|
||||
#define NORETURN __attribute__((noreturn))
|
||||
#define PACKED __attribute__((packed))
|
||||
#define ALIGNED(x) __attribute__((aligned((x))))
|
||||
#define NORETURN __attribute__((noreturn))
|
||||
#define UNUSED __attribute__((unused))
|
||||
|
||||
#endif // COMPILER_ATTR_H_
|
||||
|
Reference in New Issue
Block a user