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

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

75#define RAND_MAX 0x7fffffff
76
77extern int __mb_cur_max;
78#define MB_CUR_MAX __mb_cur_max
79
80#include <sys/cdefs.h>
81
82__BEGIN_DECLS
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

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

75#define RAND_MAX 0x7fffffff
76
77extern int __mb_cur_max;
78#define MB_CUR_MAX __mb_cur_max
79
80#include <sys/cdefs.h>
81
82__BEGIN_DECLS
83__dead void
84 abort __P((void)) __dead2;
85__pure int
86 abs __P((int)) __pure2;
83void abort __P((void)) __dead2;
84int 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,
92 size_t, int (*)(const void *, const void *)));
93void *calloc __P((size_t, size_t));
85int atexit __P((void (*)(void)));
86double atof __P((const char *));
87int atoi __P((const char *));
88long atol __P((const char *));
89void *bsearch __P((const void *, const void *, size_t,
90 size_t, int (*)(const void *, const void *)));
91void *calloc __P((size_t, size_t));
94__pure div_t
95 div __P((int, int)) __pure2;
96__dead void
97 exit __P((int)) __dead2;
92div_t div __P((int, int)) __pure2;
93void exit __P((int)) __dead2;
98void free __P((void *));
99char *getenv __P((const char *));
94void free __P((void *));
95char *getenv __P((const char *));
100__pure long
101 labs __P((long)) __pure2;
102__pure ldiv_t
103 ldiv __P((long, long)) __pure2;
96long labs __P((long)) __pure2;
97ldiv_t ldiv __P((long, long)) __pure2;
104void *malloc __P((size_t));
105void qsort __P((void *, size_t, size_t,
106 int (*)(const void *, const void *)));
107int rand __P((void));
108void *realloc __P((void *, size_t));
109void srand __P((unsigned));
110double strtod __P((const char *, char **));
111long strtol __P((const char *, char **, int));

--- 76 unchanged lines hidden ---
98void *malloc __P((size_t));
99void qsort __P((void *, size_t, size_t,
100 int (*)(const void *, const void *)));
101int rand __P((void));
102void *realloc __P((void *, size_t));
103void srand __P((unsigned));
104double strtod __P((const char *, char **));
105long strtol __P((const char *, char **, int));

--- 76 unchanged lines hidden ---