Преглед изворни кода

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 пре 16 година
родитељ
комит
adb764b51c
1 измењених фајлова са 2 додато и 2 уклоњено
  1. +2
    -2
      pipi/pipi_types.h.in

+ 2
- 2
pipi/pipi_types.h.in Прегледај датотеку

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


typedef signed char int8_t; typedef signed char int8_t;
typedef signed short int16_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 signed long long int int64_t;


typedef unsigned char uint8_t; typedef unsigned char uint8_t;
typedef unsigned short uint16_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 unsigned long long int uint64_t;


typedef int ssize_t; typedef int ssize_t;


Loading…
Откажи
Сачувај