2018-10-02 10:17:31 +00:00
|
|
|
/* config.h for check-0.11.0 on win32 under MSVC/MinGW */
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
|
|
|
|
typedef unsigned int pid_t;
|
|
|
|
typedef unsigned int uint32_t;
|
|
|
|
|
|
|
|
typedef int ssize_t;
|
|
|
|
|
|
|
|
#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 */
|
|
|
|
|
|
|
|
#endif /* _ MSC_VER */
|
|
|
|
|
|
|
|
|
|
|
|
#define LWIP_UNITTESTS_NOFORK
|
|
|
|
|
|
|
|
#include <io.h>
|
2023-06-29 20:14:36 +00:00
|
|
|
#include <stdint.h>
|
2018-10-02 10:17:31 +00:00
|
|
|
|
|
|
|
typedef unsigned int clockid_t;
|
|
|
|
typedef unsigned int timer_t;
|