diff options
Diffstat (limited to 'sysdeps/generic')
-rw-r--r-- | sysdeps/generic/getpriority.c | 3 | ||||
-rw-r--r-- | sysdeps/generic/setpriority.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/generic/getpriority.c b/sysdeps/generic/getpriority.c index 1ea8e259e6..501c92a08a 100644 --- a/sysdeps/generic/getpriority.c +++ b/sysdeps/generic/getpriority.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1995, 1996, 1997, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1991,95,96,97,2000,02 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 @@ -31,6 +31,7 @@ getpriority (which, who) __set_errno (ENOSYS); return -1; } +libc_hidden_def (getpriority) stub_warning (getpriority) #include <stub-tag.h> diff --git a/sysdeps/generic/setpriority.c b/sysdeps/generic/setpriority.c index ca183899d1..b2e6f8a059 100644 --- a/sysdeps/generic/setpriority.c +++ b/sysdeps/generic/setpriority.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1995, 1996, 1997, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1991,95,96,97,2000,02 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 @@ -30,6 +30,7 @@ setpriority (which, who, prio) __set_errno (ENOSYS); return -1; } +libc_hidden_def (setpriority) stub_warning (setpriority) #include <stub-tag.h> |