Changeset 9fff6bf in rtems
- Timestamp:
- 03/28/02 13:52:49 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 76d527ec
- Parents:
- b7d8cb7
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/libfs/ChangeLog
rb7d8cb7 r9fff6bf 1 2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * src/dosfs/fat_file.c: Remove bsp.h. 4 fat_file_write(.. const char*buf ..). 5 * src/dosfs/fat_file.h: fat_file_write(.. const char*buf ..). 6 1 7 2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/src/exec/libfs/src/dosfs/fat_file.c
rb7d8cb7 r9fff6bf 11 11 */ 12 12 13 #include <bsp.h>14 13 #include <sys/types.h> 15 14 #include <sys/stat.h> … … 356 355 unsigned32 start, 357 356 unsigned32 count, 358 c har*buf357 const char *buf 359 358 ) 360 359 { … … 364 363 unsigned32 cmpltd = 0; 365 364 unsigned32 cur_cln = 0; 366 unsigned32 save_cln ;365 unsigned32 save_cln = 0; /* FIXME: This might be incorrect, cf. below */ 367 366 unsigned32 cl_start = 0; 368 367 unsigned32 ofs = 0; -
c/src/exec/libfs/src/dosfs/fat_file.h
rb7d8cb7 r9fff6bf 157 157 unsigned32 start, 158 158 unsigned32 count, 159 c har*buf);159 const char *buf); 160 160 161 161 int -
c/src/libfs/ChangeLog
rb7d8cb7 r9fff6bf 1 2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * src/dosfs/fat_file.c: Remove bsp.h. 4 fat_file_write(.. const char*buf ..). 5 * src/dosfs/fat_file.h: fat_file_write(.. const char*buf ..). 6 1 7 2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/src/libfs/src/dosfs/fat_file.c
rb7d8cb7 r9fff6bf 11 11 */ 12 12 13 #include <bsp.h>14 13 #include <sys/types.h> 15 14 #include <sys/stat.h> … … 356 355 unsigned32 start, 357 356 unsigned32 count, 358 c har*buf357 const char *buf 359 358 ) 360 359 { … … 364 363 unsigned32 cmpltd = 0; 365 364 unsigned32 cur_cln = 0; 366 unsigned32 save_cln ;365 unsigned32 save_cln = 0; /* FIXME: This might be incorrect, cf. below */ 367 366 unsigned32 cl_start = 0; 368 367 unsigned32 ofs = 0; -
c/src/libfs/src/dosfs/fat_file.h
rb7d8cb7 r9fff6bf 157 157 unsigned32 start, 158 158 unsigned32 count, 159 c har*buf);159 const char *buf); 160 160 161 161 int -
cpukit/libfs/ChangeLog
rb7d8cb7 r9fff6bf 1 2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * src/dosfs/fat_file.c: Remove bsp.h. 4 fat_file_write(.. const char*buf ..). 5 * src/dosfs/fat_file.h: fat_file_write(.. const char*buf ..). 6 1 7 2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
cpukit/libfs/src/dosfs/fat_file.c
rb7d8cb7 r9fff6bf 11 11 */ 12 12 13 #include <bsp.h>14 13 #include <sys/types.h> 15 14 #include <sys/stat.h> … … 356 355 unsigned32 start, 357 356 unsigned32 count, 358 c har*buf357 const char *buf 359 358 ) 360 359 { … … 364 363 unsigned32 cmpltd = 0; 365 364 unsigned32 cur_cln = 0; 366 unsigned32 save_cln ;365 unsigned32 save_cln = 0; /* FIXME: This might be incorrect, cf. below */ 367 366 unsigned32 cl_start = 0; 368 367 unsigned32 ofs = 0; -
cpukit/libfs/src/dosfs/fat_file.h
rb7d8cb7 r9fff6bf 157 157 unsigned32 start, 158 158 unsigned32 count, 159 c har*buf);159 const char *buf); 160 160 161 161 int
Note: See TracChangeset
for help on using the changeset viewer.