- Timestamp:
- Jan 7, 2007, 10:13:31 PM (14 years ago)
- Location:
- zzuf/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
zzuf/trunk/doc/zzuf.1
r1619 r1620 286 286 such as \fBltrace(1)\fR on Linux to know the missing functions. 287 287 .PP 288 On some systems, such as FreeBSD, \fB__srefill\fR() is enough to monitor all289 standard IO streams functions. On other systems each function needs to be 290 reimplemented on a case by case basis. One important unimplemented function 291 is \fBfscanf\fR(), because of its complexity. Missing functions will be 292 implemented based upon user request.288 On BSD systems, such as FreeBSD or Mac OS X, \fB__srefill\fR() is enough to 289 monitor all standard IO streams functions. On other systems, such as Linux, 290 each function is reimplemented on a case by case basis. One important 291 unimplemented function is \fBfscanf\fR(), because of its complexity. Missing 292 functions will be added upon user request. 293 293 .SH HISTORY 294 294 .PP -
zzuf/trunk/src/load-stream.c
r1619 r1620 41 41 #include "load.h" 42 42 #include "fd.h" 43 44 #if !defined __FreeBSD__ && !defined __OpenBSD__45 # undef HAVE___SREFILL46 #endif47 43 48 44 #ifdef HAVE___SREFILL
Note: See TracChangeset
for help on using the changeset viewer.