diff options
Diffstat (limited to 'usr/src/lib/libc/port/gen/fattach.c')
-rw-r--r-- | usr/src/lib/libc/port/gen/fattach.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/usr/src/lib/libc/port/gen/fattach.c b/usr/src/lib/libc/port/gen/fattach.c index 4c1b497325..a56df22291 100644 --- a/usr/src/lib/libc/port/gen/fattach.c +++ b/usr/src/lib/libc/port/gen/fattach.c @@ -18,23 +18,25 @@ * * CDDL HEADER END */ + /* - * Copyright 2007 Sun Microsystems, Inc. All rights reserved. + * Copyright 2008 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ -#pragma ident "%Z%%M% %I% %E% SMI" - /* Copyright (c) 1988 AT&T */ /* All Rights Reserved */ +#pragma ident "%Z%%M% %I% %E% SMI" /* * Attach a STREAMS or door based file descriptor to an object in the file * system name space. */ -#pragma weak fattach = _fattach -#include "synonyms.h" + +#pragma weak _fattach = fattach + +#include "lint.h" #include <sys/types.h> #include <errno.h> #include <stdio.h> |