summaryrefslogtreecommitdiff
path: root/include/stdlib.h
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2018-02-24 04:56:54 +0100
committerRichard Braun <rbraun@sceen.net>2018-02-24 04:56:54 +0100
commit97f83b42af28a9ecbfd714a8337fd399a32cfb78 (patch)
treec57ba504ece0a3b127de745774c0bd72d85436dc /include/stdlib.h
parent092153af96c9d504d8b76973f6796bcd106801ec (diff)
Don't use reserved identifiers
See C99 7.1.3 Reserved identifiers.
Diffstat (limited to 'include/stdlib.h')
-rw-r--r--include/stdlib.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
index 053396e..a40dded 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -20,12 +20,12 @@
* DEALINGS IN THE SOFTWARE.
*/
-#ifndef _STDLIB_H
-#define _STDLIB_H
+#ifndef STDLIB_H
+#define STDLIB_H
#include <src/mem.h>
#define malloc mem_alloc
#define free mem_free
-#endif /* _STDLIB_H */
+#endif /* STDLIB_H */