zephyr/lib/libc/minimal
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
..
include Revert "libc: types: Remove wrong definition" 2019-07-09 21:55:05 +03:00
source mempool: make alignment/rounding 64-bit compatible 2019-07-02 19:41:20 -07:00
CMakeLists.txt libc: minimal: Implement exit()/_exit() functions. 2019-05-23 09:27:59 -04:00