source: azure_iot_hub_f767zi/trunk/asp_baseplatform/lwip/contrib-2.1.0/ports/win32/check/config.h@ 457

Last change on this file since 457 was 457, checked in by coas-nagasima, 4 years ago

ファイルを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 632 bytes
Line 
1/* config.h for check-0.11.0 on win32 under MSVC/MinGW */
2
3#ifdef _MSC_VER
4
5typedef unsigned int pid_t;
6typedef unsigned int uint32_t;
7
8typedef int ssize_t;
9#define snprintf _snprintf
10
11#define HAVE_DECL_STRDUP 1
12#define HAVE_DECL_FILENO 1
13#define HAVE_DECL_PUTENV 1
14
15#define _CRT_SECURE_NO_WARNINGS
16
17/* disable some warnings */
18#pragma warning (disable: 4090) /* const assigned to non-const */
19#pragma warning (disable: 4996) /* fileno is deprecated */
20
21#endif /* _ MSC_VER */
22
23
24#define LWIP_UNITTESTS_NOFORK
25
26#include <io.h>
27
28typedef unsigned int clockid_t;
29typedef unsigned int timer_t;
30#define STRUCT_TIMESPEC_DEFINITION_MISSING
Note: See TracBrowser for help on using the repository browser.