stdlib.h (6a634c9dca3093f3922e4b7ab826d7bdf17bf78e) stdlib.h (5dbfd19ad5fcc2b779f40f80fa05c1bd28fd0b4e)
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

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

18 *
19 * CDDL HEADER END
20 */
21
22/*
23 * Copyright (c) 1989, 2010, Oracle and/or its affiliates. All rights reserved.
24 */
25
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

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

18 *
19 * CDDL HEADER END
20 */
21
22/*
23 * Copyright (c) 1989, 2010, Oracle and/or its affiliates. All rights reserved.
24 */
25
26/* Copyright (c) 2013, OmniTI Computer Consulting, Inc. All rights reserved. */
27
26/* Copyright (c) 1988 AT&T */
27/* All Rights Reserved */
28
29#ifndef _STDLIB_H
30#define _STDLIB_H
31
32#include <iso/stdlib_iso.h>
33#include <iso/stdlib_c99.h>

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

211
212#if defined(__EXTENSIONS__) || \
213 (!defined(_STRICT_STDC) && !defined(__XOPEN_OR_POSIX))
214extern char *canonicalize_file_name(const char *);
215extern int clearenv(void);
216extern void closefrom(int);
217extern int daemon(int, int);
218extern int dup2(int, int);
28/* Copyright (c) 1988 AT&T */
29/* All Rights Reserved */
30
31#ifndef _STDLIB_H
32#define _STDLIB_H
33
34#include <iso/stdlib_iso.h>
35#include <iso/stdlib_c99.h>

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

213
214#if defined(__EXTENSIONS__) || \
215 (!defined(_STRICT_STDC) && !defined(__XOPEN_OR_POSIX))
216extern char *canonicalize_file_name(const char *);
217extern int clearenv(void);
218extern void closefrom(int);
219extern int daemon(int, int);
220extern int dup2(int, int);
221extern int dup3(int, int, int);
219extern int fdwalk(int (*)(void *, int), void *);
220extern char *qecvt(long double, int, int *, int *);
221extern char *qfcvt(long double, int, int *, int *);
222extern char *qgcvt(long double, int, char *);
223extern char *getcwd(char *, size_t);
224extern const char *getexecname(void);
225extern char *getlogin(void);
226extern int getopt(int, char *const *, const char *);

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

318#endif
319
320#if defined(__EXTENSIONS__) || !defined(__XOPEN_OR_POSIX)
321extern char *canonicalize_file_name();
322extern int clearenv();
323extern void closefrom();
324extern int daemon();
325extern int dup2();
222extern int fdwalk(int (*)(void *, int), void *);
223extern char *qecvt(long double, int, int *, int *);
224extern char *qfcvt(long double, int, int *, int *);
225extern char *qgcvt(long double, int, char *);
226extern char *getcwd(char *, size_t);
227extern const char *getexecname(void);
228extern char *getlogin(void);
229extern int getopt(int, char *const *, const char *);

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

321#endif
322
323#if defined(__EXTENSIONS__) || !defined(__XOPEN_OR_POSIX)
324extern char *canonicalize_file_name();
325extern int clearenv();
326extern void closefrom();
327extern int daemon();
328extern int dup2();
329extern int dup3();
326extern int fdwalk();
327extern char *qecvt();
328extern char *qfcvt();
329extern char *qgcvt();
330extern char *getcwd();
331extern char *getexecname();
332extern char *getlogin();
333extern int getopt();

--- 25 unchanged lines hidden ---
330extern int fdwalk();
331extern char *qecvt();
332extern char *qfcvt();
333extern char *qgcvt();
334extern char *getcwd();
335extern char *getexecname();
336extern char *getlogin();
337extern int getopt();

--- 25 unchanged lines hidden ---