svn commit: r229807 - head/include

Ed Schouten ed at FreeBSD.org
Sun Jan 8 12:03:46 UTC 2012


Author: ed
Date: Sun Jan  8 12:03:46 2012
New Revision: 229807
URL: http://svn.freebsd.org/changeset/base/229807

Log:
  Fix spelling of C11 and sort functions by name.

Modified:
  head/include/stdlib.h

Modified: head/include/stdlib.h
==============================================================================
--- head/include/stdlib.h	Sun Jan  8 11:57:38 2012	(r229806)
+++ head/include/stdlib.h	Sun Jan  8 12:03:46 2012	(r229807)
@@ -149,12 +149,12 @@ _Noreturn void	 _Exit(int);
 #endif /* __ISO_C_VISIBLE >= 1999 */
 
 /*
- * If we're in a mode greater than C99, expose C1x functions.
+ * If we're in a mode greater than C99, expose C11 functions.
  */
 #if __ISO_C_VISIBLE >= 2011
+int	at_quick_exit(void (*)(void));
 _Noreturn void
 	quick_exit(int);
-int	at_quick_exit(void (*)(void));
 #endif /* __ISO_C_VISIBLE >= 2011 */
 /*
  * Extensions made by POSIX relative to C.  We don't know yet which edition


More information about the svn-src-all mailing list