diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2011-04-09 06:16:46 -0700 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2011-04-12 14:40:53 -0700 |
commit | 596df473b87a0f0a9c264e8c687624405bc64af4 (patch) | |
tree | 8b7ca281df31a3ee64a678a6721b47922481a6fa /core | |
parent | 7af49ffe77f0ed6ea134a15ed2fddcf9dd0823e6 (diff) | |
download | syslinux-596df473b87a0f0a9c264e8c687624405bc64af4.tar.gz syslinux-596df473b87a0f0a9c264e8c687624405bc64af4.tar.xz syslinux-596df473b87a0f0a9c264e8c687624405bc64af4.zip |
undiif: Fix weird include order madness.
For some reason undiif now only compiles if core.h
is included first, but undiif gets weird mem_init
errors if core.h is included towards the end.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/lwip/src/netif/undiif.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/lwip/src/netif/undiif.c b/core/lwip/src/netif/undiif.c index c5f9c9d6..1baeb975 100644 --- a/core/lwip/src/netif/undiif.c +++ b/core/lwip/src/netif/undiif.c @@ -61,7 +61,6 @@ #include <inttypes.h> #include <string.h> #include <syslinux/pxe_api.h> -#include <core.h> #include <dprintf.h> int pxe_call(int, void *); |