5 lines
137 B
OCaml
Raw Normal View History

2018-05-24 13:32:15 +02:00
let () =
let oc = open_out "c_flags.sexp" in
output_string oc (if Sys.word_size = 32 then "(-DMDB_VL32)" else "()") ;
close_out oc