libc: add an internal macros.h header with headers to make attributes less verbose
This commit is contained in:
parent
c6ed8d2abb
commit
a050ed9133
8
libs/libc/include/_/macros.h
Normal file
8
libs/libc/include/_/macros.h
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#ifndef __MACROS_H
|
||||||
|
#define __MACROS_H
|
||||||
|
|
||||||
|
#define noreturn __attribute__((noreturn))
|
||||||
|
#define align(n) __attribute__((aligned(n)))
|
||||||
|
#define deprecated(msg) __attribute__((deprecated(msg)))
|
||||||
|
|
||||||
|
#endif
|
@ -1,10 +1,9 @@
|
|||||||
#ifndef _LUNA_H
|
#ifndef _LUNA_H
|
||||||
#define _LUNA_H
|
#define _LUNA_H
|
||||||
|
|
||||||
|
#include <_/macros.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
#define noreturn __attribute__((noreturn))
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C"
|
extern "C"
|
||||||
{
|
{
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
#ifndef _STDLIB_H
|
#ifndef _STDLIB_H
|
||||||
#define _STDLIB_H
|
#define _STDLIB_H
|
||||||
|
|
||||||
|
#include <_/macros.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
|
||||||
#define noreturn __attribute__((noreturn))
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C"
|
extern "C"
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user