Commit 7cc7b930 authored by Ronan's avatar Ronan
Browse files

fix(portab.h): on Windows use int to define int32_t

parent e8a69bdc
No related merge requests found
Showing with 3 additions and 3 deletions
/***************************************************************************** /*****************************************************************************
* *
* Copyright (c) 2008-2010, CoreCodec, Inc. * Copyright (c) 2008-2010, CoreCodec, Inc.
* All rights reserved. * All rights reserved.
* *
...@@ -402,8 +402,8 @@ typedef uint64_t uint_fast64_t; ...@@ -402,8 +402,8 @@ typedef uint64_t uint_fast64_t;
#if !defined(_STDINT_H) && !defined(_STDINT_H_) && !defined(_UINT64_T_DECLARED) && !defined(_STDINT_H_INCLUDED) // could be used elsewhere #if !defined(_STDINT_H) && !defined(_STDINT_H_) && !defined(_UINT64_T_DECLARED) && !defined(_STDINT_H_INCLUDED) // could be used elsewhere
typedef signed long int32_t; typedef signed int int32_t;
typedef unsigned long uint32_t; typedef unsigned int uint32_t;
typedef signed short int16_t; typedef signed short int16_t;
typedef unsigned short uint16_t; typedef unsigned short uint16_t;
typedef signed char int8_t; typedef signed char int8_t;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment