vxworks patch; windows patch

This commit is contained in:
Lev Walkin 2006-05-02 18:55:41 +00:00
parent 37ec07331a
commit f689f0b90d
1 changed files with 8 additions and 1 deletions

View File

@ -21,9 +21,10 @@
#ifdef WIN32
#include <malloc.h>
#include <stdint.h>
#define snprintf _snprintf
#define vsnprintf _vsnprintf
#define alloca(size) _alloca(size)
#ifdef _MSC_VER /* MSVS.Net */
#ifndef __cplusplus
@ -47,6 +48,10 @@ typedef unsigned int uint32_t;
#else /* !WIN32 */
#if defined(__vxworks)
#include <types/vxTypes.h>
#else /* !defined(__vxworks) */
#include <inttypes.h> /* C99 specifies this file */
/*
* 1. Earlier FreeBSD version didn't have <stdint.h>,
@ -69,6 +74,8 @@ typedef unsigned int uint32_t;
#endif /* defined(sun) */
#endif
#endif /* defined(__vxworks) */
#endif /* WIN32 */
#ifndef __GNUC__