Remove VisualC++ types.

This commit is contained in:
carlo-bramini 2017-11-05 18:20:51 +01:00
parent 137ace8e87
commit c2eab91ac2

View file

@ -116,18 +116,6 @@
#if HAVE_STDINT_H
#include <stdint.h>
#elif defined _MSC_VER
/* Emulate with standard MSVC types */
typedef signed __int8 int8_t;
typedef unsigned __int8 uint8_t;
typedef signed __int16 int16_t;
typedef unsigned __int16 uint16_t;
typedef signed __int32 int32_t;
typedef unsigned __int32 uint32_t;
typedef signed __int64 int64_t;
typedef unsigned __int64 uint64_t;
#else
/* Assume GLIB types */