Sha256: 30f6ebcfbedf68a749cf9ba7a99a82106cbe5ac0fc5e813ff080492bfbf78c7e
Contents?: true
Size: 497 Bytes
Versions: 1
Compression:
Stored size: 497 Bytes
Contents
#ifndef RBUV_DEBUG_H_ #define RBUV_DEBUG_H_ # ifndef RBUV_DEBUG # define RBUV_DEBUG_LOG(...) # define RBUV_DEBUG_LOG_DETAIL(...) # else # include <stdio.h> # define RBUV_DEBUG_LOG(...) do {\ fprintf(stderr, "[rbuv] [%s] ", __func__);\ fprintf(stderr, __VA_ARGS__);\ fprintf(stderr, "\n");\ } while (0) # if RBUV_DEBUG > 1 # define RBUV_DEBUG_LOG_DETAIL(...) RBUV_DEBUG_LOG(__VA_ARGS__) # else # define RBUV_DEBUG_LOG_DETAIL(...) # endif # endif #endif /* RBUV_DEBUG_H_ */
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rbuv-0.0.2 | ext/rbuv/debug.h |