usr/src/lib/libc/port/llib-lc
changeset 14022 19e11862653b
parent 13497 205481e35e49
--- a/usr/src/lib/libc/port/llib-lc	Thu Apr 18 21:49:49 2013 -0400
+++ b/usr/src/lib/libc/port/llib-lc	Thu Apr 11 04:50:36 2013 +0000
@@ -22,6 +22,7 @@
 /*
  * Copyright (c) 1991, 2010, Oracle and/or its affiliates. All rights reserved.
  * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
+ * Copyright 2013 OmniTI Computer Consulting, Inc. All rights reserved.
  */
 
 /* LINTLIBRARY */
@@ -379,8 +380,10 @@
 long nrand48(unsigned short *xsubi);
 long jrand48(unsigned short *xsubi);
 
-/* dup2.c */
+/* dup.c */
+int dup(int fildes);
 int dup2(int fildes, int fildes2);
+int dup3(int fildes, int fildes2, int flags);
 
 /* ecvt.c */
 char *ecvt(double value, int ndigit, int *_RESTRICT_KYWD decpt,
@@ -741,6 +744,9 @@
 /* perror.c */
 void perror(const char *s);
 
+/* pipe.c */
+int pipe(int *fds);
+
 /* psiginfo.c */
 void psiginfo(siginfo_t *sip, char *s);