diff options
author | Marco Paland <marco@paland.com> | 2018-05-06 13:08:54 +0200 |
---|---|---|
committer | Marco Paland <marco@paland.com> | 2018-05-06 13:08:54 +0200 |
commit | 814bbf6f4747e74070cc6994bf00d6c287374a8e (patch) | |
tree | ed0068d3ceb4deb95e24139125aaadc6deefff5d | |
parent | 2bdef77da48a665c61db7ea85e6ce1bf9a42e714 (diff) | |
download | printf-814bbf6f4747e74070cc6994bf00d6c287374a8e.tar.gz printf-814bbf6f4747e74070cc6994bf00d6c287374a8e.tar.bz2 printf-814bbf6f4747e74070cc6994bf00d6c287374a8e.zip |
fix(printf): move <stddef.h> to header
Fixes #13
-rw-r--r-- | printf.c | 1 | ||||
-rw-r--r-- | printf.h | 1 |
2 files changed, 1 insertions, 1 deletions
@@ -31,7 +31,6 @@ ///////////////////////////////////////////////////////////////////////////////
#include <stdbool.h>
-#include <stddef.h>
#include <stdint.h>
#include "printf.h"
@@ -33,6 +33,7 @@ #define _PRINTF_H_
#include <stdarg.h>
+#include <stddef.h>
#ifdef __cplusplus
|