stdlib.h (7263c8c0998402e9860a0865013fbec4ece98cd4) | stdlib.h (450dfafb1519ae7bb0615368ba45813bcabb9b35) |
---|---|
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 --- 97 unchanged lines hidden (view full) --- 106void srand(unsigned); 107double strtod(const char * __restrict, char ** __restrict); 108float strtof(const char * __restrict, char ** __restrict); 109long strtol(const char * __restrict, char ** __restrict, int); 110long double 111 strtold(const char * __restrict, char ** __restrict); 112unsigned long 113 strtoul(const char * __restrict, char ** __restrict, int); | 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 --- 97 unchanged lines hidden (view full) --- 106void srand(unsigned); 107double strtod(const char * __restrict, char ** __restrict); 108float strtof(const char * __restrict, char ** __restrict); 109long strtol(const char * __restrict, char ** __restrict, int); 110long double 111 strtold(const char * __restrict, char ** __restrict); 112unsigned long 113 strtoul(const char * __restrict, char ** __restrict, int); |
114#ifdef __BSD_VISIBLE 115void *reallocarray(void *, size_t, size_t); 116#endif |
|
114int system(const char *); 115int wctomb(char *, wchar_t); 116size_t wcstombs(char * __restrict, const wchar_t * __restrict, size_t); 117 118/* 119 * Functions added in C99 which we make conditionally available in the 120 * BSD^C89 namespace if the compiler supports `long long'. 121 * The #if test is more complicated than it ought to be because --- 205 unchanged lines hidden --- | 117int system(const char *); 118int wctomb(char *, wchar_t); 119size_t wcstombs(char * __restrict, const wchar_t * __restrict, size_t); 120 121/* 122 * Functions added in C99 which we make conditionally available in the 123 * BSD^C89 namespace if the compiler supports `long long'. 124 * The #if test is more complicated than it ought to be because --- 205 unchanged lines hidden --- |