Changeset 0c834c5 in buchla-68k for libcio


Ignore:
Timestamp:
07/08/2017 05:56:38 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
60288f5
Parents:
342a56f
Message:

Prototypes for global function pointers. Consistent global types.

Location:
libcio
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • libcio/blkrd.c

    r342a56f r0c834c5  
    4444extern  long    _berrno;                /* last file system bios error number */
    4545
    46 extern  short   _thefat[];              /* current file allocation table */
     46extern  unsigned        _thefat[];              /* current file allocation table */
    4747
    4848extern  struct  bpb     *_thebpb;       /* current bios parameter block */
  • libcio/blkwr.c

    r342a56f r0c834c5  
    3232extern  struct  bpb     *_thebpb;       /* current bios parameter block */
    3333
    34 extern  short   _thefat[];              /* current file allocation table */
    35 
    36 extern  short   _fatmod;                /* FAT modified flag */
     34extern  unsigned        _thefat[];              /* current file allocation table */
     35
     36extern  int     _fatmod;                /* FAT modified flag */
    3737
    3838#if DEBUGIT
  • libcio/clusmap.c

    r342a56f r0c834c5  
    1717
    1818extern  struct  bpb     *_thebpb;
    19 extern  short   _thefat[];
     19extern  unsigned        _thefat[];
    2020
    2121extern  int     _filecl(struct fcb *fp);
  • libcio/write.c

    r342a56f r0c834c5  
    2828extern  char    *memset(char *sp, char c, int n);
    2929
    30 extern  short   _fatmod;
     30extern  int     _fatmod;
    3131
    3232extern  unsigned        _thefat[];
Note: See TracChangeset for help on using the changeset viewer.