stdlib.h (8de6c267117c2eb423b1a940601d8e4d525c5f4d) stdlib.h (822b22a9bf21c61d772133805ffc911bb6cb974e)
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

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

72#define RAND_MAX 0x7ffffffd
73
74__BEGIN_DECLS
75#ifdef _XLOCALE_H_
76#include <xlocale/_stdlib.h>
77#endif
78extern int __mb_cur_max;
79extern int ___mb_cur_max(void);
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

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

72#define RAND_MAX 0x7ffffffd
73
74__BEGIN_DECLS
75#ifdef _XLOCALE_H_
76#include <xlocale/_stdlib.h>
77#endif
78extern int __mb_cur_max;
79extern int ___mb_cur_max(void);
80#define MB_CUR_MAX (___mb_cur_max())
80#define MB_CUR_MAX ((size_t)___mb_cur_max())
81
82_Noreturn void abort(void);
83int abs(int) __pure2;
84int atexit(void (*)(void));
85double atof(const char *);
86int atoi(const char *);
87long atol(const char *);
88void *bsearch(const void *, const void *, size_t,

--- 240 unchanged lines hidden ---
81
82_Noreturn void abort(void);
83int abs(int) __pure2;
84int atexit(void (*)(void));
85double atof(const char *);
86int atoi(const char *);
87long atol(const char *);
88void *bsearch(const void *, const void *, size_t,

--- 240 unchanged lines hidden ---