fixed 'no newline at end of file' build errors

This commit is contained in:
Reuben Thomas
2014-04-06 12:26:28 +02:00
parent a25dc955a0
commit 38884e7913
6 changed files with 12 additions and 6 deletions

View File

@@ -18,4 +18,5 @@ void pt_add_test(void (*func)(void), const char* name, const char* suite);
void pt_add_suite(void (*func)(void));
int pt_run(void);
#endif
#endif

View File

@@ -9,4 +9,5 @@ int main(int argc, char** argv) {
pt_add_suite(suite_regex);
pt_add_suite(suite_grammar);
return pt_run();
}
}