simplification

git-svn-id: https://asn1c.svn.sourceforge.net/svnroot/asn1c/trunk@286 59561ff5-6e30-0410-9f3c-9617f08c8826
This commit is contained in:
vlm 2004-09-07 07:26:32 +00:00
parent 4b7650f078
commit a4294b7168
1 changed files with 3 additions and 10 deletions

View File

@ -14,20 +14,13 @@
#include <sys/types.h> /* For size_t */
#include <stdarg.h> /* For va_start */
#include <stddef.h> /* for offsetof and ptrdiff_t */
#ifndef WIN32
#include <stdint.h> /* C99 Standard specifies this file, for uintXX_t */
#else
typedef unsigned char uint8_t;
typedef unsigned short int uint16_t;
typedef unsigned int uint32_t;
typedef int ssize_t;
#endif
#include <stdint.h> /* SUSv2+ and C99 specify this file, for uintXX_t */
#ifdef WIN32
#ifdef WIN32
#define snprintf _snprintf
#define vsnprintf _vsnprintf
#define alloca(size) _alloca(size)
#endif
#endif /* WIN32 */
#ifndef __GNUC__
#define __attribute__(ignore)