make stdio open, read, and write operations cancellation points
[oweals/musl.git] / src / misc / ulimit.c
index f0eee3a0692e11d4a870187b48958a19038d721e..1f59e8e619f5588fdd0a1cf3bd394729b3d0192c 100644 (file)
@@ -13,7 +13,7 @@ long ulimit(int cmd, ...)
                val = va_arg(ap, long);
                va_end(ap);
                rl.rlim_cur = 512ULL * val;
-               if (setrlimit(RLIMIT_FSIZE, &rl)) return -1; 
+               if (setrlimit(RLIMIT_FSIZE, &rl)) return -1;
        }
        return rl.rlim_cur / 512;
 }