(MAXSIZE): New macro.
[gnulib.git] / lib / settime.c
index e989a6d..4b9111a 100644 (file)
@@ -67,8 +67,8 @@ settime (struct timespec const *ts)
 
 #if HAVE_STIME
   return stime (&ts->tv_sec);
-#endif
-
+#else
   errno = ENOSYS;
   return -1;
+#endif
 }