Sha256: d13794712c2b56a15b3d095034a07ba79f0bbc3b76997808e39275f815169099
Contents?: true
Size: 472 Bytes
Versions: 5
Compression:
Stored size: 472 Bytes
Contents
#ifndef _ERR_H #define _ERR_H #include <features.h> #include <stdarg.h> #ifdef __cplusplus extern "C" { #endif void warn(const char *, ...); void vwarn(const char *, va_list); void warnx(const char *, ...); void vwarnx(const char *, va_list); _Noreturn void err(int, const char *, ...); _Noreturn void verr(int, const char *, va_list); _Noreturn void errx(int, const char *, ...); _Noreturn void verrx(int, const char *, va_list); #ifdef __cplusplus } #endif #endif
Version data entries
5 entries across 5 versions & 1 rubygems