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

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

31 * SUCH DAMAGE.
32 *
33 * @(#)stdlib.h 8.5 (Berkeley) 5/19/95
34 */
35
36#ifndef _STDLIB_H_
37#define _STDLIB_H_
38
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

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

31 * SUCH DAMAGE.
32 *
33 * @(#)stdlib.h 8.5 (Berkeley) 5/19/95
34 */
35
36#ifndef _STDLIB_H_
37#define _STDLIB_H_
38
39#include <sys/cdefs.h>
40
39#include <machine/ansi.h>
40
41#if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
42#include <machine/types.h>
43
44#ifdef _BSD_RUNE_T_
45typedef _BSD_RUNE_T_ rune_t;
46#undef _BSD_RUNE_T_

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

74#define EXIT_FAILURE 1
75#define EXIT_SUCCESS 0
76
77#define RAND_MAX 0x7fffffff
78
79extern int __mb_cur_max;
80#define MB_CUR_MAX __mb_cur_max
81
41#include <machine/ansi.h>
42
43#if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
44#include <machine/types.h>
45
46#ifdef _BSD_RUNE_T_
47typedef _BSD_RUNE_T_ rune_t;
48#undef _BSD_RUNE_T_

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

76#define EXIT_FAILURE 1
77#define EXIT_SUCCESS 0
78
79#define RAND_MAX 0x7fffffff
80
81extern int __mb_cur_max;
82#define MB_CUR_MAX __mb_cur_max
83
82#include <sys/cdefs.h>
83
84__BEGIN_DECLS
85void abort __P((void)) __dead2;
86int abs __P((int)) __pure2;
87int atexit __P((void (*)(void)));
88double atof __P((const char *));
89int atoi __P((const char *));
90long atol __P((const char *));
91void *bsearch __P((const void *, const void *, size_t,

--- 90 unchanged lines hidden ---
84__BEGIN_DECLS
85void abort __P((void)) __dead2;
86int abs __P((int)) __pure2;
87int atexit __P((void (*)(void)));
88double atof __P((const char *));
89int atoi __P((const char *));
90long atol __P((const char *));
91void *bsearch __P((const void *, const void *, size_t,

--- 90 unchanged lines hidden ---