diff options
Diffstat (limited to 'usr/src/lib/libc/inc/libc.h')
-rw-r--r-- | usr/src/lib/libc/inc/libc.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/usr/src/lib/libc/inc/libc.h b/usr/src/lib/libc/inc/libc.h index 4059d08d8e..5feca8b80f 100644 --- a/usr/src/lib/libc/inc/libc.h +++ b/usr/src/lib/libc/inc/libc.h @@ -20,7 +20,7 @@ */ /* - * Copyright 2008 Sun Microsystems, Inc. All rights reserved. + * Copyright 2010 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -32,8 +32,6 @@ #ifndef _LIBC_H #define _LIBC_H -#pragma ident "%Z%%M% %I% %E% SMI" - #include <thread.h> #include <stdio.h> #include <dirent.h> @@ -118,6 +116,13 @@ extern enum fp_direction_type _QgetRD(void); #error Unknown architecture! #endif +/* + * defined in open.c + */ +extern int __open(const char *, int, mode_t); +extern int __open64(const char *, int, mode_t); +extern int __openat(int, const char *, int, mode_t); +extern int __openat64(int, const char *, int, mode_t); /* * defined in hex_bin.c |