X-Git-Url: http://git.subgeniuskitty.com/pforth/.git/blobdiff_plain/3760715f6e313ff90da32399fa1903c54f69d59b..e2531e837774276f6ffb3b284703c594644761f8:/csrc/pf_core.c diff --git a/csrc/pf_core.c b/csrc/pf_core.c index f7bf38f..235c0a2 100644 --- a/csrc/pf_core.c +++ b/csrc/pf_core.c @@ -572,3 +572,13 @@ error1: return -1; } + + +#ifdef PF_UNIT_TEST +cell_t pfUnitTest( void ) +{ + cell_t numErrors = 0; + numErrors += pfUnitTestText(); + return numErrors; +} +#endif