mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-04 14:29:39 +00:00
fixed bug #34580 fcntl() is missing in LWIP_COMPAT_SOCKETS
This commit is contained in:
parent
e039d4103f
commit
8b9f70ac08
@ -69,6 +69,9 @@ HISTORY
|
||||
|
||||
++ Bugfixes:
|
||||
|
||||
2011-10-18: Simon Goldschmidt
|
||||
* sockets.h: fixed bug #34580 fcntl() is missing in LWIP_COMPAT_SOCKETS
|
||||
|
||||
2011-10-17: Simon Goldschmidt
|
||||
* api_msg.c: fixed bug #34569: shutdown(SHUT_WR) crashes netconn/socket api
|
||||
|
||||
|
@ -387,6 +387,7 @@ int lwip_fcntl(int s, int cmd, int val);
|
||||
#define read(a,b,c) lwip_read(a,b,c)
|
||||
#define write(a,b,c) lwip_write(a,b,c)
|
||||
#define close(s) lwip_close(s)
|
||||
#define fcntl(a,b,c) lwip_fcntl(a,b,c)
|
||||
#endif /* LWIP_POSIX_SOCKETS_IO_NAMES */
|
||||
|
||||
#endif /* LWIP_COMPAT_SOCKETS */
|
||||
|
Loading…
Reference in New Issue
Block a user