Deleted Added
full compact
stdlib.h (90607) stdlib.h (90644)
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

--- 17 unchanged lines hidden (view full) ---

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)stdlib.h 8.5 (Berkeley) 5/19/95
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

--- 17 unchanged lines hidden (view full) ---

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)stdlib.h 8.5 (Berkeley) 5/19/95
34 * $FreeBSD: head/include/stdlib.h 90607 2002-02-13 10:11:38Z imp $
34 * $FreeBSD: head/include/stdlib.h 90644 2002-02-14 01:59:47Z imp $
35 */
36
37#ifndef _STDLIB_H_
38#define _STDLIB_H_
39
40#include <sys/cdefs.h>
41
42#include <machine/ansi.h>

--- 121 unchanged lines hidden (view full) ---

164int cgetustr __P((char *, char *, char **));
165
166int daemon __P((int, int));
167char *devname __P((int, int));
168int getloadavg __P((double [], int));
169__const char *
170 getprogname __P((void));
171
35 */
36
37#ifndef _STDLIB_H_
38#define _STDLIB_H_
39
40#include <sys/cdefs.h>
41
42#include <machine/ansi.h>

--- 121 unchanged lines hidden (view full) ---

164int cgetustr __P((char *, char *, char **));
165
166int daemon __P((int, int));
167char *devname __P((int, int));
168int getloadavg __P((double [], int));
169__const char *
170 getprogname __P((void));
171
172char *group_from_gid __P((unsigned long, int));
173int heapsort __P((void *, size_t, size_t,
174 int (*)(const void *, const void *)));
175char *initstate __P((unsigned long, char *, long));
176#ifdef __LONG_LONG_SUPPORTED
177long long
178 llabs __P((long long)) __pure2;
179lldiv_t lldiv __P((long long, long long)) __pure2;
180#endif

--- 19 unchanged lines hidden (view full) ---

200__int64_t strtoq __P((const char *, char **, int));
201#ifdef __LONG_LONG_SUPPORTED
202unsigned long long
203 strtoull __P((const char *, char **, int));
204#endif
205__uint64_t
206 strtouq __P((const char *, char **, int));
207void unsetenv __P((const char *));
172int heapsort __P((void *, size_t, size_t,
173 int (*)(const void *, const void *)));
174char *initstate __P((unsigned long, char *, long));
175#ifdef __LONG_LONG_SUPPORTED
176long long
177 llabs __P((long long)) __pure2;
178lldiv_t lldiv __P((long long, long long)) __pure2;
179#endif

--- 19 unchanged lines hidden (view full) ---

199__int64_t strtoq __P((const char *, char **, int));
200#ifdef __LONG_LONG_SUPPORTED
201unsigned long long
202 strtoull __P((const char *, char **, int));
203#endif
204__uint64_t
205 strtouq __P((const char *, char **, int));
206void unsetenv __P((const char *));
208char *user_from_uid __P((unsigned long, int));
209#endif /* !_ANSI_SOURCE && !_POSIX_SOURCE */
210__END_DECLS
211
212#endif /* !_STDLIB_H_ */
207#endif /* !_ANSI_SOURCE && !_POSIX_SOURCE */
208__END_DECLS
209
210#endif /* !_STDLIB_H_ */