Changeset 2330 for zzuf/trunk/src
- Timestamp:
- May 18, 2008, 1:10:41 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
zzuf/trunk/src/lib-stream.c
r1791 r2330 62 62 #if defined HAVE__IO_GETC 63 63 static int (*ORIG(_IO_getc)) (FILE *stream); 64 #endif 65 #if defined HAVE_GETC_UNLOCKED 66 static int (*ORIG(getc_unlocked)) (FILE *stream); 67 #endif 68 #if defined HAVE_FGETC_UNLOCKED 69 static int (*ORIG(fgetc_unlocked)) (FILE *stream); 64 70 #endif 65 71 static char * (*ORIG(fgets)) (char *s, int size, FILE *stream); … … 322 328 { 323 329 int ret; FGETC(_IO_getc); return ret; 330 } 331 #endif 332 333 #if defined HAVE_GETC_UNLOCKED 334 int NEW(getc_unlocked)(FILE *stream) 335 { 336 int ret; FGETC(getc_unlocked); return ret; 337 } 338 #endif 339 340 #if defined HAVE_FGETC_UNLOCKED 341 int NEW(fgetc_unlocked)(FILE *stream) 342 { 343 int ret; FGETC(fgetc_unlocked); return ret; 324 344 } 325 345 #endif
Note: See TracChangeset
for help on using the changeset viewer.