diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/settime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/settime.c b/lib/settime.c index e989a6db6..4b9111a20 100644 --- a/lib/settime.c +++ b/lib/settime.c @@ -67,8 +67,8 @@ settime (struct timespec const *ts) #if HAVE_STIME return stime (&ts->tv_sec); -#endif - +#else errno = ENOSYS; return -1; +#endif } |