Sha256: 0dd94beb6b15eae684f27621fe9ad6236aef545fe454e973ba3147359fca51b2
Contents?: true
Size: 487 Bytes
Versions: 12
Compression:
Stored size: 487 Bytes
Contents
#ifndef UNUSED_H #define UNUSED_H #ifdef UNUSED #elif defined(__GNUC__) #define UNUSED(x) UNUSED_##x __attribute__((unused)) #elif defined(__LCLINT__) #define UNUSED(x) /*@unused@*/ x #else #define UNUSED(x) x #endif #define SUCCESS 1 #define FAILURE 0 NORETURN(void raise_last_exception()); void save_exception(VALUE exception, const char *fmt, ...); int with_exception(VALUE exception, const char *fmt, ...); int with_exception_errno(VALUE exception, const char *fmt, ...); #endif
Version data entries
12 entries across 12 versions & 1 rubygems