Changeset b28a12e in buchla-68k for libcio/open.c


Ignore:
Timestamp:
07/10/2017 02:17:49 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
06f6615
Parents:
39a696b
Message:

Zero redundant declarations.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcio/open.c

    r39a696b rb28a12e  
    66*/
    77
    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"
    209
    2110static struct device condev  = { 2, 2, 1, 0, _noper  };
    2211static struct device filedev = { 1, 1, 0, 1, _fileop };
    23 
    24 extern  struct fcb _fcbtab[];
    2512
    2613/*
Note: See TracChangeset for help on using the changeset viewer.