Add missing stdlib.h header

Apply some minor style(9) fixes

MFC after: 3 days
Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
Enji Cooper 2015-12-08 05:27:22 +00:00
parent 75743a83e4
commit 5ef13c482d

View File

@ -9,11 +9,13 @@
#include <stdio.h> #include <stdio.h>
#include <pthread.h> #include <pthread.h>
#include <stdlib.h>
#include <unistd.h> #include <unistd.h>
int __thread n; int __thread n;
void *f1(void *arg) void
*f1(void *arg)
{ {
if (n != 0) { if (n != 0) {
printf("bug, n == %d \n", n); printf("bug, n == %d \n", n);
@ -23,7 +25,8 @@ void *f1(void *arg)
return (0); return (0);
} }
int main() int
main(void)
{ {
pthread_t td; pthread_t td;
int i; int i;