- Timestamp:
- 07/08/2017 05:56:38 PM (7 years ago)
- Branches:
- master
- Children:
- 60288f5
- Parents:
- 342a56f
- Location:
- libcio
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
libcio/blkrd.c
r342a56f r0c834c5 44 44 extern long _berrno; /* last file system bios error number */ 45 45 46 extern short_thefat[]; /* current file allocation table */46 extern unsigned _thefat[]; /* current file allocation table */ 47 47 48 48 extern struct bpb *_thebpb; /* current bios parameter block */ -
libcio/blkwr.c
r342a56f r0c834c5 32 32 extern struct bpb *_thebpb; /* current bios parameter block */ 33 33 34 extern short_thefat[]; /* current file allocation table */35 36 extern short _fatmod; /* FAT modified flag */34 extern unsigned _thefat[]; /* current file allocation table */ 35 36 extern int _fatmod; /* FAT modified flag */ 37 37 38 38 #if DEBUGIT -
libcio/clusmap.c
r342a56f r0c834c5 17 17 18 18 extern struct bpb *_thebpb; 19 extern short_thefat[];19 extern unsigned _thefat[]; 20 20 21 21 extern int _filecl(struct fcb *fp); -
libcio/write.c
r342a56f r0c834c5 28 28 extern char *memset(char *sp, char c, int n); 29 29 30 extern short _fatmod;30 extern int _fatmod; 31 31 32 32 extern unsigned _thefat[];
Note:
See TracChangeset
for help on using the changeset viewer.