1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2026-01-01 01:41:18 +01:00

changed to _types.h definition for ssize_t

This commit is contained in:
Oleg Hahm 2013-09-12 23:13:54 +02:00
parent a6a96c7110
commit 5f537c38ac

View File

@ -1,7 +1,9 @@
#ifndef MSP430_TYPES_H
#define MSP430_TYPES_H
#include <sys/_types.h>
/** defining signed type for size_t */
typedef int ssize_t;
typedef _ssize_t ssize_t;
#endif /* MSP430_TYPES_H */