Print this page
5964 mkostemp() and mkostemps() need prototypes in stdlib.h


   9  * or http://www.opensolaris.org/os/licensing.
  10  * See the License for the specific language governing permissions
  11  * and limitations under the License.
  12  *
  13  * When distributing Covered Code, include this CDDL HEADER in each
  14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15  * If applicable, add the following below this CDDL HEADER, with the
  16  * fields enclosed by brackets "[]" replaced with your own identifying
  17  * information: Portions Copyright [yyyy] [name of copyright owner]
  18  *
  19  * CDDL HEADER END
  20  */
  21 
  22 /*
  23  * Copyright 2014 Garrett D'Amore <garrett@damore.org>
  24  * Copyright (c) 2013 Gary Mills
  25  *
  26  * Copyright (c) 1989, 2010, Oracle and/or its affiliates. All rights reserved.
  27  */
  28 
  29 /* Copyright (c) 2013, OmniTI Computer Consulting, Inc. All rights reserved. */
  30 
  31 /*      Copyright (c) 1988 AT&T     */
  32 /*        All Rights Reserved   */
  33 
  34 #ifndef _STDLIB_H
  35 #define _STDLIB_H
  36 
  37 #include <iso/stdlib_iso.h>
  38 #include <iso/stdlib_c99.h>
  39 
  40 #if defined(__EXTENSIONS__) || defined(_XPG4)
  41 #include <sys/wait.h>
  42 #endif
  43 
  44 /*
  45  * Allow global visibility for symbols defined in
  46  * C++ "std" namespace in <iso/stdlib_iso.h>.
  47  */
  48 #if __cplusplus >= 199711L
  49 using std::div_t;


  77 using std::system;
  78 using std::wcstombs;
  79 using std::wctomb;
  80 #endif
  81 
  82 #ifdef  __cplusplus
  83 extern "C" {
  84 #endif
  85 
  86 #ifndef _UID_T
  87 #define _UID_T
  88 typedef unsigned int    uid_t;          /* UID type             */
  89 #endif  /* !_UID_T */
  90 
  91 /* large file compilation environment setup */
  92 #if !defined(_LP64) && _FILE_OFFSET_BITS == 64
  93 
  94 #ifdef  __PRAGMA_REDEFINE_EXTNAME
  95 #pragma redefine_extname        mkstemp         mkstemp64
  96 #pragma redefine_extname        mkstemps        mkstemps64


  97 #else   /* __PRAGMA_REDEFINE_EXTNAME */
  98 #define mkstemp                 mkstemp64
  99 #define mkstemps                mkstemps64


 100 #endif  /* __PRAGMA_REDEFINE_EXTNAME */
 101 
 102 #endif  /* _FILE_OFFSET_BITS == 64 */
 103 
 104 /* In the LP64 compilation environment, all APIs are already large file */
 105 #if defined(_LP64) && defined(_LARGEFILE64_SOURCE)
 106 
 107 #ifdef  __PRAGMA_REDEFINE_EXTNAME
 108 #pragma redefine_extname        mkstemp64       mkstemp
 109 #pragma redefine_extname        mkstemps64      mkstemps


 110 #else   /* __PRAGMA_REDEFINE_EXTNAME */
 111 #define mkstemp64               mkstemp
 112 #define mkstemps64              mkstemps


 113 #endif  /* __PRAGMA_REDEFINE_EXTNAME */
 114 
 115 #endif  /* _LP64 && _LARGEFILE64_SOURCE */
 116 
 117 #if defined(__EXTENSIONS__) || \
 118         (!defined(_STRICT_STDC) && !defined(__XOPEN_OR_POSIX)) || \
 119         (_POSIX_C_SOURCE - 0 >= 199506L) || defined(_REENTRANT)
 120 extern int rand_r(unsigned int *);
 121 #endif
 122 
 123 extern void _exithandle(void);
 124 
 125 #if defined(__EXTENSIONS__) || \
 126         (!defined(_STRICT_STDC) && !defined(_POSIX_C_SOURCE)) || \
 127         defined(_XPG4)
 128 extern double drand48(void);
 129 extern double erand48(unsigned short *);
 130 extern long jrand48(unsigned short *);
 131 extern void lcong48(unsigned short *);
 132 extern long lrand48(void);


 148  */
 149 #if (defined(__EXTENSIONS__) || \
 150         (!defined(_STRICT_STDC__) && !defined(_POSIX_C_SOURCE))) && \
 151         (!defined(_XOPEN_SOURCE) || (defined(_XPG3) && !defined(_XPG4)))
 152 #ifndef _SSIZE_T
 153 #define _SSIZE_T
 154 #if defined(_LP64) || defined(_I32LPx)
 155 typedef long    ssize_t;        /* size of something in bytes or -1 */
 156 #else
 157 typedef int     ssize_t;        /* (historical version) */
 158 #endif
 159 #endif  /* !_SSIZE_T */
 160 
 161 extern void swab(const char *, char *, ssize_t);
 162 #endif /* defined(__EXTENSIONS__) || !defined(_STRICT_STDC) ... */
 163 
 164 #if defined(__EXTENSIONS__) || \
 165         !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || \
 166         (defined(_LARGEFILE_SOURCE) && _FILE_OFFSET_BITS == 64)
 167 extern int      mkstemp(char *);

 168 #if !defined(_XPG4_2) || defined(__EXTENSIONS__)
 169 extern int      mkstemps(char *, int);

 170 #endif
 171 #endif /* defined(__EXTENSIONS__) ... */
 172 
 173 #if     defined(_LARGEFILE64_SOURCE) && !((_FILE_OFFSET_BITS == 64) && \
 174             !defined(__PRAGMA_REDEFINE_EXTNAME))
 175 extern int      mkstemp64(char *);

 176 #if !defined(_XPG4_2) || defined(__EXTENSIONS__)
 177 extern int      mkstemps64(char *, int);

 178 #endif
 179 #endif  /* _LARGEFILE64_SOURCE... */
 180 
 181 #if defined(__EXTENSIONS__) || \
 182         (!defined(_STRICT_STDC) && !defined(__XOPEN_OR_POSIX)) || \
 183         defined(_XPG4_2)
 184 extern long a64l(const char *);
 185 extern char *ecvt(double, int, int *_RESTRICT_KYWD, int *_RESTRICT_KYWD);
 186 extern char *fcvt(double, int, int *_RESTRICT_KYWD, int *_RESTRICT_KYWD);
 187 extern char *gcvt(double, int, char *);
 188 extern int getsubopt(char **, char *const *, char **);
 189 extern int  grantpt(int);
 190 extern char *initstate(unsigned, char *, size_t);
 191 extern char *l64a(long);
 192 extern char *mktemp(char *);
 193 extern char *ptsname(int);
 194 extern long random(void);
 195 extern char *realpath(const char *_RESTRICT_KYWD, char *_RESTRICT_KYWD);
 196 extern char *setstate(const char *);
 197 extern void srandom(unsigned);




   9  * or http://www.opensolaris.org/os/licensing.
  10  * See the License for the specific language governing permissions
  11  * and limitations under the License.
  12  *
  13  * When distributing Covered Code, include this CDDL HEADER in each
  14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15  * If applicable, add the following below this CDDL HEADER, with the
  16  * fields enclosed by brackets "[]" replaced with your own identifying
  17  * information: Portions Copyright [yyyy] [name of copyright owner]
  18  *
  19  * CDDL HEADER END
  20  */
  21 
  22 /*
  23  * Copyright 2014 Garrett D'Amore <garrett@damore.org>
  24  * Copyright (c) 2013 Gary Mills
  25  *
  26  * Copyright (c) 1989, 2010, Oracle and/or its affiliates. All rights reserved.
  27  */
  28 
  29 /* Copyright 2015, OmniTI Computer Consulting, Inc. All rights reserved. */
  30 
  31 /*      Copyright (c) 1988 AT&T     */
  32 /*        All Rights Reserved   */
  33 
  34 #ifndef _STDLIB_H
  35 #define _STDLIB_H
  36 
  37 #include <iso/stdlib_iso.h>
  38 #include <iso/stdlib_c99.h>
  39 
  40 #if defined(__EXTENSIONS__) || defined(_XPG4)
  41 #include <sys/wait.h>
  42 #endif
  43 
  44 /*
  45  * Allow global visibility for symbols defined in
  46  * C++ "std" namespace in <iso/stdlib_iso.h>.
  47  */
  48 #if __cplusplus >= 199711L
  49 using std::div_t;


  77 using std::system;
  78 using std::wcstombs;
  79 using std::wctomb;
  80 #endif
  81 
  82 #ifdef  __cplusplus
  83 extern "C" {
  84 #endif
  85 
  86 #ifndef _UID_T
  87 #define _UID_T
  88 typedef unsigned int    uid_t;          /* UID type             */
  89 #endif  /* !_UID_T */
  90 
  91 /* large file compilation environment setup */
  92 #if !defined(_LP64) && _FILE_OFFSET_BITS == 64
  93 
  94 #ifdef  __PRAGMA_REDEFINE_EXTNAME
  95 #pragma redefine_extname        mkstemp         mkstemp64
  96 #pragma redefine_extname        mkstemps        mkstemps64
  97 #pragma redefine_extname        mkostemp        mkostemp64
  98 #pragma redefine_extname        mkostemps       mkostemps64
  99 #else   /* __PRAGMA_REDEFINE_EXTNAME */
 100 #define mkstemp                 mkstemp64
 101 #define mkstemps                mkstemps64
 102 #define mkostemp                mkostemp64
 103 #define mkostemps               mkostemps64
 104 #endif  /* __PRAGMA_REDEFINE_EXTNAME */
 105 
 106 #endif  /* _FILE_OFFSET_BITS == 64 */
 107 
 108 /* In the LP64 compilation environment, all APIs are already large file */
 109 #if defined(_LP64) && defined(_LARGEFILE64_SOURCE)
 110 
 111 #ifdef  __PRAGMA_REDEFINE_EXTNAME
 112 #pragma redefine_extname        mkstemp64       mkstemp
 113 #pragma redefine_extname        mkstemps64      mkstemps
 114 #pragma redefine_extname        mkostemp64      mkostemp
 115 #pragma redefine_extname        mkostemps64     mkostemps
 116 #else   /* __PRAGMA_REDEFINE_EXTNAME */
 117 #define mkstemp64               mkstemp
 118 #define mkstemps64              mkstemps
 119 #define mkostemp64              mkostemp
 120 #define mkostemps64             mkostemps
 121 #endif  /* __PRAGMA_REDEFINE_EXTNAME */
 122 
 123 #endif  /* _LP64 && _LARGEFILE64_SOURCE */
 124 
 125 #if defined(__EXTENSIONS__) || \
 126         (!defined(_STRICT_STDC) && !defined(__XOPEN_OR_POSIX)) || \
 127         (_POSIX_C_SOURCE - 0 >= 199506L) || defined(_REENTRANT)
 128 extern int rand_r(unsigned int *);
 129 #endif
 130 
 131 extern void _exithandle(void);
 132 
 133 #if defined(__EXTENSIONS__) || \
 134         (!defined(_STRICT_STDC) && !defined(_POSIX_C_SOURCE)) || \
 135         defined(_XPG4)
 136 extern double drand48(void);
 137 extern double erand48(unsigned short *);
 138 extern long jrand48(unsigned short *);
 139 extern void lcong48(unsigned short *);
 140 extern long lrand48(void);


 156  */
 157 #if (defined(__EXTENSIONS__) || \
 158         (!defined(_STRICT_STDC__) && !defined(_POSIX_C_SOURCE))) && \
 159         (!defined(_XOPEN_SOURCE) || (defined(_XPG3) && !defined(_XPG4)))
 160 #ifndef _SSIZE_T
 161 #define _SSIZE_T
 162 #if defined(_LP64) || defined(_I32LPx)
 163 typedef long    ssize_t;        /* size of something in bytes or -1 */
 164 #else
 165 typedef int     ssize_t;        /* (historical version) */
 166 #endif
 167 #endif  /* !_SSIZE_T */
 168 
 169 extern void swab(const char *, char *, ssize_t);
 170 #endif /* defined(__EXTENSIONS__) || !defined(_STRICT_STDC) ... */
 171 
 172 #if defined(__EXTENSIONS__) || \
 173         !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || \
 174         (defined(_LARGEFILE_SOURCE) && _FILE_OFFSET_BITS == 64)
 175 extern int      mkstemp(char *);
 176 extern int      mkostemp(char *, int);
 177 #if !defined(_XPG4_2) || defined(__EXTENSIONS__)
 178 extern int      mkstemps(char *, int);
 179 extern int      mkostemps(char *, int, int);
 180 #endif
 181 #endif /* defined(__EXTENSIONS__) ... */
 182 
 183 #if     defined(_LARGEFILE64_SOURCE) && !((_FILE_OFFSET_BITS == 64) && \
 184             !defined(__PRAGMA_REDEFINE_EXTNAME))
 185 extern int      mkstemp64(char *);
 186 extern int      mkostemp64(char *, int);
 187 #if !defined(_XPG4_2) || defined(__EXTENSIONS__)
 188 extern int      mkstemps64(char *, int);
 189 extern int      mkostemps64(char *, int, int);
 190 #endif
 191 #endif  /* _LARGEFILE64_SOURCE... */
 192 
 193 #if defined(__EXTENSIONS__) || \
 194         (!defined(_STRICT_STDC) && !defined(__XOPEN_OR_POSIX)) || \
 195         defined(_XPG4_2)
 196 extern long a64l(const char *);
 197 extern char *ecvt(double, int, int *_RESTRICT_KYWD, int *_RESTRICT_KYWD);
 198 extern char *fcvt(double, int, int *_RESTRICT_KYWD, int *_RESTRICT_KYWD);
 199 extern char *gcvt(double, int, char *);
 200 extern int getsubopt(char **, char *const *, char **);
 201 extern int  grantpt(int);
 202 extern char *initstate(unsigned, char *, size_t);
 203 extern char *l64a(long);
 204 extern char *mktemp(char *);
 205 extern char *ptsname(int);
 206 extern long random(void);
 207 extern char *realpath(const char *_RESTRICT_KYWD, char *_RESTRICT_KYWD);
 208 extern char *setstate(const char *);
 209 extern void srandom(unsigned);