- Timestamp:
- 07/14/2017 09:11:47 PM (7 years ago)
- Branches:
- master
- Children:
- aa021e2
- Parents:
- 4810254
- Location:
- libcio
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
libcio/conin.c
r4810254 r7ecfb7b 15 15 int16_t nbp; 16 16 register int16_t l; 17 18 (void)arg; 17 19 18 20 if (_ConBuf[1] EQ 0) { -
libcio/fseek.c
r4810254 r7ecfb7b 16 16 int16_t fseek(FILE *fp, int32_t pos, int16_t mode) 17 17 { 18 register int16_t i, lr; 19 int32_t curpos; 18 register int16_t lr; 20 19 21 20 if (fp->_flags & _DIRTY) { -
libcio/fsinit.c
r4810254 r7ecfb7b 41 41 int16_t _badfio(io_arg arg, int8_t *buff, int16_t len) 42 42 { 43 (void)arg; 44 (void)buff; 45 (void)len; 46 43 47 errno = EBADF; /* set bad fd code */ 44 48 return(FAILURE); /* return with an error indication */ … … 53 57 int16_t _badfc(io_arg arg) 54 58 { 59 (void)arg; 60 55 61 errno = EBADF; /* set bad fd code */ 56 62 return(FAILURE); /* return with an error indication */ … … 65 71 int16_t _nopo(int8_t *name, int16_t flag, int16_t mode, struct channel *chp, struct devtabl *dp) 66 72 { 73 (void)name; 74 (void)flag; 75 (void)mode; 76 (void)chp; 77 (void)dp; 78 67 79 return(SUCCESS); /* return with a non-error indication */ 68 80 } … … 76 88 int16_t _nopc(io_arg arg) 77 89 { 90 (void)arg; 91 78 92 return(SUCCESS); /* return with a non-error indication */ 79 93 } -
libcio/fstubs.c
r4810254 r7ecfb7b 38 38 int16_t readbuf(int16_t dev, int8_t *buf) 39 39 { 40 (void)dev; 41 (void)buf; 42 40 43 xtrap15(); 41 44 return(1); -
libcio/open.c
r4810254 r7ecfb7b 179 179 int8_t tmpname[9], tmpext[4]; 180 180 181 (void)mode; 182 (void)dp; 183 181 184 /* search for an available fcb entry */ 182 185 -
libcio/rename.c
r4810254 r7ecfb7b 10 10 int16_t rename(int8_t *old, int8_t *new) 11 11 { 12 int8_t buff[60]; 12 (void)old; 13 (void)new; 13 14 14 15 return(-1); /* return an error for now */
Note:
See TracChangeset
for help on using the changeset viewer.