/* * Helper functions for accessing standard C's "errno" value. */ #include int SupErrno_GetErrno(void) { return errno; } void SupErrno_SetErrno(int e) { errno = e; }