svn commit: r247001 - head/lib/libstand

Tim Kientzle kientzle at FreeBSD.org
Tue Feb 19 17:09:24 UTC 2013


Author: kientzle
Date: Tue Feb 19 17:09:23 2013
New Revision: 247001
URL: http://svnweb.freebsd.org/changeset/base/247001

Log:
  Fix includes for use in libstand.

Modified:
  head/lib/libstand/strtoul.c

Modified: head/lib/libstand/strtoul.c
==============================================================================
--- head/lib/libstand/strtoul.c	Tue Feb 19 16:43:48 2013	(r247000)
+++ head/lib/libstand/strtoul.c	Tue Feb 19 17:09:23 2013	(r247001)
@@ -38,10 +38,8 @@ static char sccsid[] = "@(#)strtoul.c	8.
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");
 
+#include "stand.h"
 #include <limits.h>
-#include <ctype.h>
-#include <errno.h>
-#include <stdlib.h>
 
 /*
  * Convert a string to an unsigned long integer.


More information about the svn-src-head mailing list