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

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

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

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

22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)stdlib.h 8.5 (Berkeley) 5/19/95
30 * $FreeBSD: head/include/stdlib.h 232971 2012-03-14 14:39:07Z theraven $
30 * $FreeBSD: head/include/stdlib.h 233600 2012-03-28 12:11:54Z theraven $
31 */
32
33#ifndef _STDLIB_H_
34#define _STDLIB_H_
35
36#include <sys/cdefs.h>
37#include <sys/_null.h>
38#include <sys/_types.h>

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

67} ldiv_t;
68
69#define EXIT_FAILURE 1
70#define EXIT_SUCCESS 0
71
72#define RAND_MAX 0x7fffffff
73
74__BEGIN_DECLS
31 */
32
33#ifndef _STDLIB_H_
34#define _STDLIB_H_
35
36#include <sys/cdefs.h>
37#include <sys/_null.h>
38#include <sys/_types.h>

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

67} ldiv_t;
68
69#define EXIT_FAILURE 1
70#define EXIT_SUCCESS 0
71
72#define RAND_MAX 0x7fffffff
73
74__BEGIN_DECLS
75#ifdef _XLOCALE_H_
76#include <xlocale/_stdlib.h>
77#endif
75extern int __mb_cur_max;
76extern int ___mb_cur_max(void);
77#define MB_CUR_MAX (___mb_cur_max())
78
79_Noreturn void abort(void);
80int abs(int) __pure2;
81int atexit(void (*)(void));
82double atof(const char *);

--- 223 unchanged lines hidden ---
78extern int __mb_cur_max;
79extern int ___mb_cur_max(void);
80#define MB_CUR_MAX (___mb_cur_max())
81
82_Noreturn void abort(void);
83int abs(int) __pure2;
84int atexit(void (*)(void));
85double atof(const char *);

--- 223 unchanged lines hidden ---