- Timestamp:
- 07/01/2017 10:09:33 PM (7 years ago)
- Branches:
- master
- Children:
- c091ef8
- Parents:
- 9bf0f86
- Location:
- libcio
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libcio/clusmap.c
r9bf0f86 rdf097bf 346 346 if (arg EQ _noper) { 347 347 348 ds = ( struct device *)chantab[fp->_unit].c_arg->d_name;348 ds = ((struct devtabl *)chantab[fp->_unit].c_arg)->d_name; 349 349 printf(" is a device: [%s]\n", ds); 350 350 -
libcio/fprintf.c
r9bf0f86 rdf097bf 15 15 extern int aputc(); 16 16 17 static int fpsub(); 18 17 19 int 18 20 fprintf(stream, fmt, va_alist) … … 22 24 { 23 25 register int count; 24 int fpsub();25 26 va_list aptr; 26 27 -
libcio/fseek.c
r9bf0f86 rdf097bf 41 41 lr = lseek(fp->_unit, pos, mode); 42 42 43 if ( chantab[fp->_unit].c_arg->modefl & FC_EOF)43 if (((struct fcb *)chantab[fp->_unit].c_arg)->modefl & FC_EOF) 44 44 fp->_flags |= _EOF; 45 45
Note:
See TracChangeset
for help on using the changeset viewer.