Print this page
5187 missing functions in stdlib.h : mkostemp, mkostemps & mkdtemp
Reviewed by: Dan McDonald <danmcd@omniti.com>
        
*** 9,18 ****
--- 9,19 ----
  # http://www.illumos.org/license/CDDL.
  #
  
  #
  # Copyright 2015 Garrett D'Amore <garrett@damore.org>
+ # Copyright 2015, OmniTI Computer Consulting, Inc. All Rights Reserved.
  #
  
  #
  # Definitions found in stdlib.h
  #
*** 53,57 ****
--- 54,88 ----
  func |  malloc                                                          |\
          void *                                                          |\
          size_t                                                          |\
          stdlib.h                                                        |\
          ALL
+ 
+ func |  mkstemp                                                         |\
+         int                                                             |\
+         char *                                                          |\
+         stdlib.h                                                        |\
+         C90 C99 SUSv1+
+ 
+ func |  mkostemp                                                        |\
+         int                                                             |\
+         char *; int                                                     |\
+         stdlib.h                                                        |\
+         -ALL
+ 
+ func |  mkstemps                                                        |\
+         int                                                             |\
+         char *; int                                                     |\
+         stdlib.h                                                        |\
+         C90 C99
+ 
+ func |  mkostemps                                                       |\
+         int                                                             |\
+         char *; int; int                                                |\
+         stdlib.h                                                        |\
+         -ALL
+ 
+ func |  mkdtemp                                                         |\
+         char *                                                          |\
+         char *                                                          |\
+         stdlib.h                                                        |\
+         -ALL SUSv4+