summaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/aix
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-12-31 10:25:10 +0000
committerUlrich Drepper <drepper@redhat.com>2002-12-31 10:25:10 +0000
commitf7f7f8150a52fd01eeedf17fa241d9cc0cf36842 (patch)
treeeef37117ca6e8108eb20b0c0411d2a5486386361 /sysdeps/unix/sysv/aix
parent245eab025f92980428a499e6d7f4845f6ceaadc8 (diff)
downloadglibc-f7f7f8150a52fd01eeedf17fa241d9cc0cf36842.tar.gz
Update.
* include/time.h: Add libc_hidden_proto for __nanosleep. * sysdeps/generic/nanosleep.c: Add libc_hidden_def for __nanosleep. * sysdeps/mach/nanosleep.c: Likewise. * sysdeps/unix/sysv/aix/nanosleep.c: Likewise. * sysdeps/unix/sysv/linux/syscalls.list: Add __GI___nanosleep alias.
Diffstat (limited to 'sysdeps/unix/sysv/aix')
-rw-r--r--sysdeps/unix/sysv/aix/nanosleep.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/aix/nanosleep.c b/sysdeps/unix/sysv/aix/nanosleep.c
index 3c6e5082e6..842275f77a 100644
--- a/sysdeps/unix/sysv/aix/nanosleep.c
+++ b/sysdeps/unix/sysv/aix/nanosleep.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000 Free Software Foundation, Inc.
+/* Copyright (C) 2000, 2002 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
@@ -36,4 +36,5 @@ __libc_nanosleep (const struct timespec *req, struct timespec *rem)
return _nsleep ((struct timestruc_t *) req, (struct timestruc_t *) rem);
}
strong_alias (__libc_nanosleep, __nanosleep)
+libc_hidden_def (__nanosleep)
strong_alias (__libc_nanosleep, nanosleep)