DHCPCD(8): Disable script support

This commit is contained in:
Sebastian Huber
2013-12-17 14:06:35 +01:00
parent f724741db0
commit 9cc83a74e2

View File

@@ -31,7 +31,18 @@
#include "net.h"
void if_printoptions(void);
#ifndef __rtems__
int send_interface(int, const struct interface *);
int script_runreason(const struct interface *, const char *);
#else /* __rtems__ */
static inline int send_interface(int fd, const struct interface *iface)
{
return 0;
}
static inline int script_runreason(const struct interface *ifp, const char *reason)
{
return 0;
}
#endif /* __rtems__ */
#endif