stdlib.h (8fa0b743820f61c661ba5f3ea0e3be0dc137910e) | stdlib.h (79d09835dd3c33a699b00d00ec50be6a4512b57f) |
---|---|
1/*- 2 * Copyright (c) 1990, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 137 unchanged lines hidden (view full) --- 146#endif /* __LONG_LONG_SUPPORTED */ 147 148_Noreturn void _Exit(int); 149#endif /* __ISO_C_VISIBLE >= 1999 */ 150 151/* 152 * If we're in a mode greater than C99, expose C11 functions. 153 */ | 1/*- 2 * Copyright (c) 1990, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 137 unchanged lines hidden (view full) --- 146#endif /* __LONG_LONG_SUPPORTED */ 147 148_Noreturn void _Exit(int); 149#endif /* __ISO_C_VISIBLE >= 1999 */ 150 151/* 152 * If we're in a mode greater than C99, expose C11 functions. 153 */ |
154#if __ISO_C_VISIBLE >= 2011 | 154#if __ISO_C_VISIBLE >= 2011 || __cplusplus >= 201103L |
155void * aligned_alloc(size_t, size_t); 156int at_quick_exit(void (*)(void)); 157_Noreturn void 158 quick_exit(int); 159#endif /* __ISO_C_VISIBLE >= 2011 */ 160/* 161 * Extensions made by POSIX relative to C. We don't know yet which edition 162 * of POSIX made these extensions, so assume they've always been there until --- 143 unchanged lines hidden --- | 155void * aligned_alloc(size_t, size_t); 156int at_quick_exit(void (*)(void)); 157_Noreturn void 158 quick_exit(int); 159#endif /* __ISO_C_VISIBLE >= 2011 */ 160/* 161 * Extensions made by POSIX relative to C. We don't know yet which edition 162 * of POSIX made these extensions, so assume they've always been there until --- 143 unchanged lines hidden --- |