Commit 982d3048 authored by Filippo Della Betta's avatar Filippo Della Betta Committed by Youness Alaoui

Added typedef on size_t and ssize_t that are not defined on Visual Studio platform

parent 5ff6366d
......@@ -69,6 +69,11 @@ typedef unsigned uint32_t;
typedef long long int64_t;
typedef unsigned long long uint64_t;
#ifndef _SSIZE_T_
typedef unsigned int size_t;
typedef unsigned long ssize_t;
#endif
typedef uint8_t bool;
#define true 1
#define false 0
......
Markdown is supported
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