added tests

This commit is contained in:
Neeflix
2018-06-28 00:25:26 +02:00
parent 66dd3f2b42
commit 252dbeca47
61 changed files with 4867 additions and 14 deletions

View File

@@ -0,0 +1,13 @@
#include <pthread.h>
#ifdef __CLASSIC_C__
int main()
{
return 0;
}
#else
int main(void)
{
return 0;
}
#endif