mirror of
https://github.com/JamesonHuang/OpenWrt_Luci_Lua.git
synced 2024-11-23 22:00:11 +00:00
11 lines
203 B
C
11 lines
203 B
C
#ifndef UPNPUNISTD_H
|
|
#define UPNPUNISTD_H
|
|
|
|
#ifdef WIN32
|
|
/* Do not #include <unistd.h> on WIN32. */
|
|
#else /* WIN32 */
|
|
#include <unistd.h> /* for close() */
|
|
#endif /* WIN32 */
|
|
|
|
#endif /* UPNPUNISTD_H */
|