Changeset b28a12e in buchla-68k for libcio/open.c
- Timestamp:
- 07/10/2017 02:17:49 PM (7 years ago)
- Branches:
- master
- Children:
- 06f6615
- Parents:
- 39a696b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcio/open.c
r39a696b rb28a12e 6 6 */ 7 7 8 #include "all.h" 9 10 extern int16_t _badfd(void); 11 extern int16_t _noper(void); 12 extern int16_t _inifcb(struct fcb *fcp, int8_t *name, int8_t *ext, int16_t mode); 13 extern int16_t _opfcb(struct fcb *fcp); 14 15 extern int8_t *FilName(int8_t *s, int8_t *p); 16 extern int8_t *FilExt(int8_t *s, int8_t *p); 17 18 int16_t _fileop(int8_t *name, int16_t flag, int16_t mode, struct channel *chp, struct devtabl *dp); 19 int16_t _filecl(struct fcb *fp); 8 #include "ram.h" 20 9 21 10 static struct device condev = { 2, 2, 1, 0, _noper }; 22 11 static struct device filedev = { 1, 1, 0, 1, _fileop }; 23 24 extern struct fcb _fcbtab[];25 12 26 13 /*
Note:
See TracChangeset
for help on using the changeset viewer.