Changeset 1730 for zzuf/trunk/src/fd.c
- Timestamp:
- Feb 1, 2007, 7:19:03 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
zzuf/trunk/src/fd.c
r1719 r1730 51 51 { 52 52 int managed, locked; 53 uint64_t pos;53 int64_t pos; 54 54 /* Public stuff */ 55 55 struct fuzz fuzz; … … 312 312 } 313 313 314 long int _zz_getpos(int fd)314 int64_t _zz_getpos(int fd) 315 315 { 316 316 if(fd < 0 || fd >= maxfd || fds[fd] == -1) … … 320 320 } 321 321 322 void _zz_setpos(int fd, long int pos)322 void _zz_setpos(int fd, int64_t pos) 323 323 { 324 324 if(fd < 0 || fd >= maxfd || fds[fd] == -1) … … 328 328 } 329 329 330 void _zz_addpos(int fd, long int off)330 void _zz_addpos(int fd, int64_t off) 331 331 { 332 332 if(fd < 0 || fd >= maxfd || fds[fd] == -1)
Note: See TracChangeset
for help on using the changeset viewer.