#ifndef NONSTD_SSIZE_H #define NONSTD_SSIZE_H #define _POSIX_C_SOURCE 200112L // get ssize_t from POSIX #include #include // TODO: the %zd specifier may not be available outside gcc and clang, and // people recommend using %jd and casting argument to intmax_t for greatest // portability. #define PRIdSSIZE "zd" #undef _POSIX_C_SOURCE #endif