From 9224f8f43db1b3f19584822b72d5cb5a3ae4cc06 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Mon, 23 Sep 2013 16:13:28 +0200 Subject: [PATCH] Fix wrong malloc include guard. --- libc/include/malloc.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/libc/include/malloc.h b/libc/include/malloc.h index 3f91fbc2..05fd4aff 100644 --- a/libc/include/malloc.h +++ b/libc/include/malloc.h @@ -22,10 +22,8 @@ *******************************************************************************/ -/* TODO: POSIX-1.2008 compliance is only partial */ - -#ifndef _UNISTD_H -#define _UNISTD_H 1 +#ifndef _MALLOC_H +#define _MALLOC_H 1 #include