diff options
author | ed <ed@FreeBSD.org> | 2012-01-08 12:03:46 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2012-01-08 12:03:46 +0000 |
commit | e107daf6530c6f103d5eeca6200fc548454f9c33 (patch) | |
tree | 53b4658d4eb0ee6010f3a1e78031d43fd0e3ddf0 /include | |
parent | 3d25a34ed96800d66359b9c91ae4c2fb609faf62 (diff) | |
download | FreeBSD-src-e107daf6530c6f103d5eeca6200fc548454f9c33.zip FreeBSD-src-e107daf6530c6f103d5eeca6200fc548454f9c33.tar.gz |
Fix spelling of C11 and sort functions by name.
Diffstat (limited to 'include')
-rw-r--r-- | include/stdlib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index e5975f5..c66f924 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -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 |