From: Ulrich Drepper Date: Tue, 31 Dec 2002 10:22:40 +0000 (+0000) Subject: Add libc_hidden_def for __nanosleep. X-Git-Tag: glibc-2.16-ports-before-merge~1494 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c63e402a1272a0285470a6f86819dcfb7c263485;p=thirdparty%2Fglibc.git Add libc_hidden_def for __nanosleep. --- diff --git a/sysdeps/unix/sysv/aix/nanosleep.c b/sysdeps/unix/sysv/aix/nanosleep.c index 3c6e5082e62..842275f77ad 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)