libc: Correct include guards

This commit is contained in:
apio 2022-10-08 11:32:01 +02:00
parent 1f655fabe2
commit ad115e9bab
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
#ifndef _LIBALLOC_H
#define _LIBALLOC_H
#ifndef _BITS_LIBALLOC_H
#define _BITS_LIBALLOC_H
#include <stddef.h>

View File

@ -1,5 +1,5 @@
#ifndef __MACROS_H
#define __MACROS_H
#ifndef __BITS_MACROS_H
#define __BITS_MACROS_H
#define noreturn __attribute__((noreturn))
#define align(n) __attribute__((aligned(n)))