Sha256: 266eac513de57431e91a628920a2d0df5319ed4049676a1325cd0756c30365d7
Contents?: true
Size: 435 Bytes
Versions: 6
Compression:
Stored size: 435 Bytes
Contents
/* * rdiscount extension discount configuration */ #ifndef __MARKDOWN_D #define __MARKDOWN_D 1 /* tabs are four spaces */ #define TABSTOP 4 /* these are setup by extconf.rb */ #if HAVE_RANDOM #define COINTOSS() (random()&1) #elif HAVE_RAND #define COINTOSS() (rand()&1) #endif #if HAVE_SRANDOM #define INITRNG(x) srandom((unsigned int)x) #elif HAVE_SRAND #define INITRNG(x) srand((unsigned int)x) #endif #endif/* __MARKDOWN_D */
Version data entries
6 entries across 6 versions & 4 rubygems