Changeset 1732 for zzuf/trunk/src/fuzz.c
- Timestamp:
- Feb 1, 2007, 11:20:48 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
zzuf/trunk/src/fuzz.c
r1730 r1732 45 45 46 46 /* Per-offset byte protection */ 47 static unsignedint *ranges = NULL;48 static unsignedint ranges_static[512];47 static int *ranges = NULL; 48 static int ranges_static[512]; 49 49 50 50 /* Per-value byte protection */ … … 110 110 } 111 111 112 void _zz_fuzz(int fd, volatile uint8_t *buf, uint64_t len)112 void _zz_fuzz(int fd, volatile uint8_t *buf, int64_t len) 113 113 { 114 114 int64_t start, stop;
Note: See TracChangeset
for help on using the changeset viewer.