summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Dale <richard.dale@codethink.co.uk>2015-03-27 15:25:43 +0000
committerRichard Dale <richard.dale@codethink.co.uk>2015-03-27 15:25:43 +0000
commit2b71aa376b6ebf1b99116c9b0c407267e84fb036 (patch)
treecb2b00e23e61f8a2aab674e39e45586b1b93f18c
parentd715b39c0801ecea5e52f9029cea7c76320f93cf (diff)
downloadsyslinux-baserock/rdale/musl.tar.gz
Remove stddef.h include to fix build with muslbaserock/rdale/musl
-rw-r--r--memdump/argv.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/memdump/argv.c b/memdump/argv.c
index ca41e036..2f36913f 100644
--- a/memdump/argv.c
+++ b/memdump/argv.c
@@ -33,7 +33,6 @@
*/
#include <stdint.h>
-#include <stddef.h>
#include <stdio.h>
#define ALIGN_UP(p,t) ((t *)(((uintptr_t)(p) + (sizeof(t)-1)) & ~(sizeof(t)-1)))