From 764d748c9cc940cee08cdb22c19c2bc3a008750e Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 8 Aug 2018 12:06:48 +0200 Subject: [PATCH] RTEMS: Introduce This helps to avoid Newlib updates due to FreeBSD kernel space changes. Signed-off-by: Sebastian Huber --- newlib/libc/sys/rtems/include/net/if.h | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/newlib/libc/sys/rtems/include/net/if.h b/newlib/libc/sys/rtems/include/net/if.h index b2e264176..54bb9094d 100644 --- a/newlib/libc/sys/rtems/include/net/if.h +++ b/newlib/libc/sys/rtems/include/net/if.h @@ -579,13 +579,6 @@ struct ifrsshash { #endif /* __BSD_VISIBLE */ -#ifdef _KERNEL -#ifdef MALLOC_DECLARE -MALLOC_DECLARE(M_IFADDR); -MALLOC_DECLARE(M_IFMADDR); -#endif -#endif - #ifndef _KERNEL struct if_nameindex { unsigned int if_index; /* 1, 2, ... */ @@ -599,4 +592,8 @@ struct if_nameindex *if_nameindex(void); unsigned int if_nametoindex(const char *); __END_DECLS #endif +#ifdef _KERNEL +/* Header file provided outside of Newlib */ +#include +#endif #endif /* !_NET_IF_H_ */