svn commit: r291834 - head/lib/libc/regex/grot

Garrett Cooper ngie at FreeBSD.org
Sat Dec 5 01:19:36 UTC 2015


Author: ngie
Date: Sat Dec  5 01:19:35 2015
New Revision: 291834
URL: https://svnweb.freebsd.org/changeset/base/291834

Log:
  Add missing headers and sort #includes per style(9)
  
  MFC after: 1 week
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/lib/libc/regex/grot/main.c

Modified: head/lib/libc/regex/grot/main.c
==============================================================================
--- head/lib/libc/regex/grot/main.c	Sat Dec  5 01:13:18 2015	(r291833)
+++ head/lib/libc/regex/grot/main.c	Sat Dec  5 01:19:35 2015	(r291834)
@@ -1,11 +1,13 @@
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");
 
-#include <stdio.h>
-#include <string.h>
 #include <sys/types.h>
-#include <regex.h>
 #include <assert.h>
+#include <regex.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <unistd.h>
 
 #include "main.ih"
 


More information about the svn-src-all mailing list