*************** *** 245,250 **** chksize(size) int size; { int spacefree; struct statfs sfb; --- 245,253 ---- chksize(size) int size; { + #ifdef __linux__ + return(1); + #else int spacefree; struct statfs sfb; *************** *** 257,262 **** if (minfree + size > spacefree) return(0); return(1); } read_number(fn) --- 260,266 ---- if (minfree + size > spacefree) return(0); return(1); + #endif } read_number(fn)