Browse Source

On Win32, define 32-bit C99 types as ints instead of longs, because

a lot of software (wrongly) assumes that int32_t is the same as int.

git-svn-id: file:///srv/caca.zoy.org/var/lib/svn/libpipi/trunk@4397 92316355-f0b4-4df1-b90c-862c8a59935f
master
sam 14 years ago
parent
commit
adb764b51c
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      pipi/pipi_types.h.in

+ 2
- 2
pipi/pipi_types.h.in View File

@@ -39,12 +39,12 @@

typedef signed char int8_t;
typedef signed short int16_t;
typedef signed long int int32_t;
typedef signed int int32_t;
typedef signed long long int int64_t;

typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned long int uint32_t;
typedef unsigned int uint32_t;
typedef unsigned long long int uint64_t;

typedef int ssize_t;


Loading…
Cancel
Save