#------------------------------------------------------------------------------
# Define the default compiler environment
main_env = BuildEnv.new do |env|
- env["CFLAGS"] += ['-Wall', '-Wextra', '--std=c99', '--pedantic']
+ env["CFLAGS"] += ['-O3', '-Wall', '-Wextra', '--std=c99', '--pedantic']
env["CPPPATH"] += Dir['modules/libcds/source/**/'] + [ ]
end
void strbuf_print(strbuf_t* buf, const char* str);
char* strbuf_string(strbuf_t* buf);
+// Main Routine
+int main(int argc, char** argv);
+
/* Parsing Rules
*****************************************************************************/
static void expression(void)