1
0
mirror of https://github.com/elua/elua.git synced 2025-01-08 20:56:17 +08:00

fixed a build error when BUILD_DHCPC was not enabled

This commit is contained in:
Bogdan Marinescu 2008-09-20 16:03:12 +00:00
parent c28cbf108c
commit 76396d6d7e

View File

@ -1,3 +1,5 @@
#include "build.h"
#if defined(BUILD_UIP) && defined(BUILD_DHCPC)
/*
* Copyright (c) 2005, Swedish Institute of Computer Science
* All rights reserved.
@ -356,3 +358,11 @@ dhcpc_request(void)
}
}
/*---------------------------------------------------------------------------*/
#else // #if defined(BUILD_UIP) && defined(BUILD_DHCPC)
void dhcpc_appcall(void)
{
}
#endif // #if defined(BUILD_UIP) && defined(BUILD_DHCPC)