10 lines
136 B
C
10 lines
136 B
C
/* unit.c unit tests driver */
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
printf("hello unit tests\n");
|
|
|
|
return 0;
|
|
}
|