aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/generic/open64.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/generic/open64.c')
-rw-r--r--sysdeps/generic/open64.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sysdeps/generic/open64.c b/sysdeps/generic/open64.c
index 16e19730f4..c90b00c7cd 100644
--- a/sysdeps/generic/open64.c
+++ b/sysdeps/generic/open64.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1995, 1996, 1997, 1999 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -24,7 +24,7 @@
/* Open FILE with access OFLAG. If OFLAG includes O_CREAT,
a third argument is the file protection. */
int
-__open64 (file, oflag)
+__libc_open64 (file, oflag)
const char *file;
int oflag;
{
@@ -47,7 +47,8 @@ __open64 (file, oflag)
__set_errno (ENOSYS);
return -1;
}
-weak_alias (__open64, open64)
+strong_alias (__libc_open64, __open64)
+weak_alias (__libc_open64, open64)
stub_warning (open64)
#include <stub-tag.h>