zephyr/lib/libc/minimal/include/sys
Jukka Rissanen b889120ca7 Revert "libc: types: Remove wrong definition"
This reverts commit 2a63e342f4.

This needs to be reverted as otherwise the type of ssize_t will be
"unsigned long" which is not correct.

    (gdb) ptype ssize_t
    type = unsigned long

For example this check would fail in that case

    ssize_t foo(void)
    {
        return -1;
    }
    ...
    if (foo() < 0) {
        printk("This is never called\n");
    }

Fixes #17378

Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
2019-07-09 21:55:05 +03:00
..
_timeval.h libc: minimal: Introduce sys/_timeval.h 2019-05-07 22:18:09 -04:00
cdefs.h libc: minimal: Add empty sys/cdefs.h 2017-06-21 12:35:49 -04:00
stat.h libc: minimal: Add dummy sys/stat.h [REVERTME] 2018-10-10 13:31:00 -04:00
types.h Revert "libc: types: Remove wrong definition" 2019-07-09 21:55:05 +03:00