Sha256: 2d17a29afd56e951f33bedc53ad2e4e97b821336b49268a53821aa0c318c21dd
Contents?: true
Size: 461 Bytes
Versions: 11
Compression:
Stored size: 461 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 #include "ruby-config.h" #endif/* __MARKDOWN_D */
Version data entries
11 entries across 10 versions & 3 rubygems