summaryrefslogtreecommitdiff
path: root/sysvipc/semtimedop.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysvipc/semtimedop.c')
-rw-r--r--sysvipc/semtimedop.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/sysvipc/semtimedop.c b/sysvipc/semtimedop.c
index 4163c78791..a4b750c813 100644
--- a/sysvipc/semtimedop.c
+++ b/sysvipc/semtimedop.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2003-2018 Free Software Foundation, Inc.
+/* Copyright (C) 2003-2019 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@redhat.com>, 2003.
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <sys/sem.h>
#include <errno.h>
@@ -22,11 +22,12 @@
/* Perform user-defined atomical operation of array of semaphores. */
int
-semtimedop (int semid, struct sembuf *sops, size_t nsops,
- const struct timespec *timeout)
+__semtimedop (int semid, struct sembuf *sops, size_t nsops,
+ const struct timespec *timeout)
{
__set_errno (ENOSYS);
return -1;
}
+weak_alias (__semtimedop, semtimedop)
stub_warning (semtimedop)