remove extra spaces from ti cyassl proper files

This commit is contained in:
toddouska 2014-05-09 11:55:59 -07:00
parent ec5f3cc681
commit 34f2e51415
10 changed files with 28 additions and 22 deletions

View File

@ -57,12 +57,18 @@ enum {
int myoptind = 0;
char* myoptarg = NULL;
#ifndef NO_TESTSUITE_MAIN_DRIVER
int main(int argc, char** argv)
{
static int testsuite_test(int argc, char** argv);
int main(int argc, char** argv)
{
return testsuite_test(argc, argv);
}
#endif
}
#endif /* NO_TESTSUITE_MAIN_DRIVER */
int testsuite_test(int argc, char** argv)
{