libc: types: Remove wrong definition

types.h was wrongly defining unsigned as signed and following
undefining it. This definition was not being used anywhere though.

Signed-off-by: Flavio Ceolin <flavio.ceolin@intel.com>
This commit is contained in:
Flavio Ceolin 2019-06-25 14:22:02 -07:00 committed by Anas Nashif
commit 2a63e342f4

View file

@ -15,9 +15,7 @@ typedef unsigned int mode_t;
#if !defined(__ssize_t_defined)
#define __ssize_t_defined
#define unsigned signed
typedef __SIZE_TYPE__ ssize_t;
#undef unsigned
#endif