Changeset df097bf in buchla-68k for libcio


Ignore:
Timestamp:
07/01/2017 10:09:33 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
c091ef8
Parents:
9bf0f86
Message:

Code compiles, doesn't link.

Location:
libcio
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • libcio/clusmap.c

    r9bf0f86 rdf097bf  
    346346        if (arg EQ _noper) {
    347347
    348                 ds = (struct device *)chantab[fp->_unit].c_arg->d_name;
     348                ds = ((struct devtabl *)chantab[fp->_unit].c_arg)->d_name;
    349349                printf(" is a device:  [%s]\n", ds);
    350350
  • libcio/fprintf.c

    r9bf0f86 rdf097bf  
    1515extern  int     aputc();
    1616
     17static  int     fpsub();
     18
    1719int
    1820fprintf(stream, fmt, va_alist)
     
    2224{
    2325        register int count;
    24         int fpsub();
    2526        va_list aptr;
    2627
  • libcio/fseek.c

    r9bf0f86 rdf097bf  
    4141        lr = lseek(fp->_unit, pos, mode);
    4242
    43         if (chantab[fp->_unit].c_arg->modefl & FC_EOF)
     43        if (((struct fcb *)chantab[fp->_unit].c_arg)->modefl & FC_EOF)
    4444                fp->_flags |= _EOF;
    4545
Note: See TracChangeset for help on using the changeset viewer.