stdlib.h (99596f82def1e251f33c7fc3bb1c486bf5fa4122) | stdlib.h (cd18ccdc302e93b1adfd0263a7270df444ca9ead) |
---|---|
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 --- 143 unchanged lines hidden (view full) --- 152int cgetnum __P((char *, char *, long *)); 153int cgetset __P((char *)); 154int cgetstr __P((char *, char *, char **)); 155int cgetustr __P((char *, char *, char **)); 156 157int daemon __P((int, int)); 158char *devname __P((int, int)); 159int getloadavg __P((double [], 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 --- 143 unchanged lines hidden (view full) --- 152int cgetnum __P((char *, char *, long *)); 153int cgetset __P((char *)); 154int cgetstr __P((char *, char *, char **)); 155int cgetustr __P((char *, char *, char **)); 156 157int daemon __P((int, int)); 158char *devname __P((int, int)); 159int getloadavg __P((double [], int)); |
160const char * 161 getprogname __P((void)); |
|
160 161char *group_from_gid __P((unsigned long, int)); 162int heapsort __P((void *, size_t, size_t, 163 int (*)(const void *, const void *))); 164char *initstate __P((unsigned long, char *, long)); 165int mergesort __P((void *, size_t, size_t, 166 int (*)(const void *, const void *))); 167int radixsort __P((const unsigned char **, int, const unsigned char *, 168 unsigned)); 169int sradixsort __P((const unsigned char **, int, const unsigned char *, 170 unsigned)); 171int rand_r __P((unsigned *)); 172long random __P((void)); 173void *reallocf __P((void *, size_t)); 174char *realpath __P((const char *, char resolved_path[])); | 162 163char *group_from_gid __P((unsigned long, int)); 164int heapsort __P((void *, size_t, size_t, 165 int (*)(const void *, const void *))); 166char *initstate __P((unsigned long, char *, long)); 167int mergesort __P((void *, size_t, size_t, 168 int (*)(const void *, const void *))); 169int radixsort __P((const unsigned char **, int, const unsigned char *, 170 unsigned)); 171int sradixsort __P((const unsigned char **, int, const unsigned char *, 172 unsigned)); 173int rand_r __P((unsigned *)); 174long random __P((void)); 175void *reallocf __P((void *, size_t)); 176char *realpath __P((const char *, char resolved_path[])); |
177void setprogname __P((const char *)); |
|
175char *setstate __P((char *)); 176void srandom __P((unsigned long)); 177void sranddev __P((void)); 178void srandomdev __P((void)); 179char *user_from_uid __P((unsigned long, int)); 180#ifndef __STRICT_ANSI__ 181__int64_t strtoq __P((const char *, char **, int)); 182__uint64_t 183 strtouq __P((const char *, char **, int)); 184#endif 185void unsetenv __P((const char *)); 186#endif /* !_ANSI_SOURCE && !_POSIX_SOURCE */ 187__END_DECLS 188 189#endif /* !_STDLIB_H_ */ | 178char *setstate __P((char *)); 179void srandom __P((unsigned long)); 180void sranddev __P((void)); 181void srandomdev __P((void)); 182char *user_from_uid __P((unsigned long, int)); 183#ifndef __STRICT_ANSI__ 184__int64_t strtoq __P((const char *, char **, int)); 185__uint64_t 186 strtouq __P((const char *, char **, int)); 187#endif 188void unsetenv __P((const char *)); 189#endif /* !_ANSI_SOURCE && !_POSIX_SOURCE */ 190__END_DECLS 191 192#endif /* !_STDLIB_H_ */ |