mirror of
https://github.com/ep00ch/lwip-contrib-mac.git
synced 2024-10-30 18:28:43 +00:00
22 lines
479 B
C
22 lines
479 B
C
/* config.h for check-0.9.8 on win32 under MSVC */
|
|
|
|
typedef unsigned int pid_t;
|
|
typedef unsigned int uint32_t;
|
|
|
|
#define ssize_t size_t
|
|
#define snprintf _snprintf
|
|
|
|
#define HAVE_DECL_STRDUP 1
|
|
#define HAVE_DECL_FILENO 1
|
|
#define HAVE_DECL_PUTENV 1
|
|
|
|
#define _CRT_SECURE_NO_WARNINGS
|
|
|
|
/* disable some warnings */
|
|
#pragma warning (disable: 4090) /* const assigned to non-const */
|
|
#pragma warning (disable: 4996) /* fileno is deprecated */
|
|
|
|
#define LWIP_UNITTESTS_NOFORK
|
|
|
|
#include <io.h>
|