libc: minimal: Define time_t and suseconds_t

According to POSIX, these types should be defined by sys/types.h.

Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
This commit is contained in:
Paul Sokolovsky 2019-04-24 00:35:11 +03:00 committed by Anas Nashif
parent d7ee114106
commit d79d3eb725

View file

@ -40,4 +40,7 @@ typedef int off_t;
#endif
typedef long long time_t;
typedef long suseconds_t;
#endif /* ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_SYS_TYPES_H_ */