libtests/POSIX: Fix warnings and style.

This commit is contained in:
Joel Sherrill
2018-08-10 08:23:01 -05:00
parent b3693f5d6d
commit 382d6537df
46 changed files with 140 additions and 148 deletions

View File

@@ -12,14 +12,13 @@
#include <time.h>
int
main (void)
int main(void)
{
struct timespec req = { 0, 42 };
struct timespec rem;
int status;
status = nanosleep (&req, &rem);
status = nanosleep(&req, &rem);
return 0;
return status;
}