diff options
Diffstat (limited to 'sysdeps/stub/nanosleep.c')
-rw-r--r-- | sysdeps/stub/nanosleep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/stub/nanosleep.c b/sysdeps/stub/nanosleep.c index 97cdd50..0995bb9 100644 --- a/sysdeps/stub/nanosleep.c +++ b/sysdeps/stub/nanosleep.c @@ -24,7 +24,7 @@ Boston, MA 02111-1307, USA. */ int nanosleep (const struct timespec *requested_time, struct timespec *remaining) { - errno = ENOSYS; + __set_errno (ENOSYS); return -1; } stub_warning (nanosleep) |