Changeset 0580615 in buchla-68k for libcio/clusmap.c


Ignore:
Timestamp:
07/08/2017 02:42:31 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
342a56f
Parents:
46d8069
Message:

Point of no return.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcio/clusmap.c

    r46d8069 r0580615  
    1212#include "stddefs.h"
    1313
    14 extern  int     micons(), _gtcl12();
    15 extern  long    miconl();
     14extern  short   micons(short wi);
     15extern  unsigned        _gtcl12(char *fat, unsigned cl);
     16extern  long    miconl(long wi);
    1617
    1718extern  struct  bpb     *_thebpb;
    1819extern  short   _thefat[];
    1920
    20 extern  int     _filecl(), _noper();
     21extern  int     _filecl(struct fcb *fp);
     22extern  int     _noper(void);
    2123
    2224/*
     
    7981*/
    8082
    81 static int
    82 waitcr()
     83static int waitcr(void)
    8384{
    8485        char    c;
     
    103104*/
    104105
    105 int
    106 ClusMap(fcp)
    107 struct fcb *fcp;
     106int ClusMap(struct fcb *fcp)
    108107{
    109108        int     clus, nc;
     
    172171*/
    173172
    174 struct fcb *
    175 FCBmode(fcp)
    176 register struct fcb *fcp;
     173struct fcb *FCBmode(struct fcb *fcp)
    177174{
    178175        register unsigned short mf;
     
    217214*/
    218215
    219 struct fcb *
    220 SnapFCB(fcp)
    221 register struct fcb *fcp;
     216struct fcb *SnapFCB(struct fcb *fcp)
    222217{
    223218        printf("\nFCB at 0x%08lx:  [%-8.8s].[%-3.3s]\n",
     
    257252*/
    258253
    259 MapFAT(fat, ncl, stops)
    260 register char *fat;
    261 short ncl, stops;
     254void MapFAT(char *fat, short ncl, short stops)
    262255{
    263256        register int i;
     
    293286*/
    294287
    295 FILE *
    296 FILEfl(fp)
    297 FILE *fp;
     288FILE *FILEfl(FILE *fp)
    298289{
    299290        register unsigned short mf;
     
    325316*/
    326317
    327 FILEpr(fp)
    328 FILE *fp;
     318void FILEpr(FILE *fp)
    329319{
    330320        int     (*arg)(), ft;
     
    387377*/
    388378
    389 struct fcb *
    390 fd2fcb(fd)
    391 short fd;
     379struct fcb *fd2fcb(short fd)
    392380{
    393381        if ((fd < 0) OR (fd > MAXCHAN))
     
    403391*/
    404392
    405 struct fcb *
    406 fp2fcb(fp)
    407 FILE *fp;
     393struct fcb *fp2fcb(FILE *fp)
    408394{
    409395        if (fp EQ (FILE *)NULL)
Note: See TracChangeset for help on using the changeset viewer.