- Timestamp:
- 07/09/2017 01:36:31 PM (7 years ago)
- Branches:
- master
- Children:
- 0292fbb
- Parents:
- 002f873
- Location:
- libcio
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libcio/conin.c
r002f873 r5c13d64 14 14 #include "stddefs.h" 15 15 16 extern char *memcpy(char *s1, char *s2, int n);16 extern void *memcpy(void *vp1, void *vp2, int n); 17 17 extern int readbuf(int dev, char *buf); 18 18 extern void writeln(int unit, char *buf); -
libcio/read.c
r002f873 r5c13d64 50 50 extern int _seek(struct fcb *fcp); 51 51 52 extern char *memcpy(char *s1, char *s2, int n);52 extern void *memcpy(void *vp1, void *vp2, int n); 53 53 54 54 int _filerd(struct fcb *fp, char *buffer, unsigned len); -
libcio/write.c
r002f873 r5c13d64 26 26 extern long miconl(long wi); 27 27 28 extern char *memset(char *sp, char c, int n);28 extern void *memset(void *vp, char c, int n); 29 29 30 30 extern int _fatmod;
Note:
See TracChangeset
for help on using the changeset viewer.