Make ftepps __NULL__ translate to gmqccs untyped nil keyword (this isn't correct behaviour of the __NULL__ constant, but it works)

This commit is contained in:
Dale Weiler 2013-04-24 04:17:17 +00:00
parent dc8523c650
commit 35988b6191
2 changed files with 6 additions and 0 deletions

View file

@ -1828,6 +1828,12 @@ ftepp_t *ftepp_create()
ftepp_add_macro(ftepp, "__STD_VERSION_MINOR__", minor);
ftepp_add_macro(ftepp, "__STD_VERSION_MAJOR__", major);
/*
* We're going to just make __NULL__ nil, which works for 60% of the
* cases of __NULL_ for fteqcc.
*/
ftepp_add_macro(ftepp, "__NULL__", "nil");
return ftepp;
}

0
misc/check-doc.sh Normal file → Executable file
View file