Sha256: e533ec554674316bb38bb07ad7e055c7748f793fbeed82f50b89e43b632e310f
Contents?: true
Size: 541 Bytes
Versions: 23
Compression:
Stored size: 541 Bytes
Contents
#ifndef JOHNSON_SPIDERMONKEY_H #define JOHNSON_SPIDERMONKEY_H #include <assert.h> #include <stdarg.h> #include <stdbool.h> #include <ruby.h> #include "jsapi.h" #include "jshash.h" #include "jsregexp.h" #include "jroot.h" #ifndef StringValueLen #define StringValueLen(v) (RSTRING(v)->len) #endif #ifndef UNUSED # if defined(__GNUC__) # define MAYBE_UNUSED(name) name __attribute__((unused)) # define UNUSED(name) MAYBE_UNUSED(UNUSED_ ## name) # else # define MAYBE_UNUSED(name) name # define UNUSED(name) name # endif #endif #endif
Version data entries
23 entries across 23 versions & 3 rubygems