Author: ngie
Date: Tue Dec  8 05:27:22 2015
New Revision: 291984
URL: https://svnweb.freebsd.org/changeset/base/291984

Log:
  Add missing stdlib.h header
  
  Apply some minor style(9) fixes
  
  MFC after: 3 days
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/tools/regression/tls/ttls4/ttls4.c

Modified: head/tools/regression/tls/ttls4/ttls4.c
==============================================================================
--- head/tools/regression/tls/ttls4/ttls4.c     Tue Dec  8 05:24:06 2015        
(r291983)
+++ head/tools/regression/tls/ttls4/ttls4.c     Tue Dec  8 05:27:22 2015        
(r291984)
@@ -9,11 +9,13 @@
 
 #include <stdio.h>
 #include <pthread.h>
+#include <stdlib.h>
 #include <unistd.h>
 
 int __thread n;
 
-void *f1(void *arg)
+void
+*f1(void *arg)
 {
        if (n != 0) {
                printf("bug, n == %d \n", n);
@@ -23,7 +25,8 @@ void *f1(void *arg)
        return (0);
 }
 
-int main()
+int
+main(void)
 {
        pthread_t td;
        int i;
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to