Changeset b28a12e in buchla-68k for iolib


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.

Location:
iolib
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • iolib/dofmt.c

    r39a696b rb28a12e  
    2222#define CRUFTY  1
    2323
    24 #include "all.h"
     24#include "ram.h"
    2525
    2626#define MAXDIGS 11
     
    3434#define max(a,b)        ((a)>(b)?(a):(b))
    3535#define min(a,b)        ((a)<(b)?(a):(b))
    36 
    37 #if     CRUFTY
    38 extern  int32_t uldiv(int32_t divid, int32_t divis);
    39 extern  int32_t uldivr;
    40 #endif
    4136
    4237int32_t dofmt_(int16_t (*putsub)(), int8_t *format, va_list args)
  • iolib/mdump.c

    r39a696b rb28a12e  
    2323#define TESTER          0
    2424
    25 #include "all.h"
     25#include "ram.h"
    2626
    2727#define PERLINE 16
  • iolib/pause.c

    r39a696b rb28a12e  
    66*/
    77
    8 #include "all.h"
    9 
    10 extern  int16_t waitcr(void);
    11 extern  void    writeln(int16_t unit, int8_t *buf);
     8#include "ram.h"
    129
    1310void pause(int8_t *s)
  • iolib/printf.c

    r39a696b rb28a12e  
    1313*/
    1414
    15 #include "all.h"
     15#include "ram.h"
    1616
    17 extern  int32_t dofmt_(int16_t (*putsub)(), int8_t *format, va_list args);
    18 
    19         static int16_t fpsub(int16_t c);
     17static int16_t fpsub(int16_t c);
    2018
    2119/*
  • iolib/rawio.c

    r39a696b rb28a12e  
    6363 */
    6464
    65 #include "all.h"
    66 
     65#include "ram.h"
    6766
    6867int16_t readln(int16_t unit, int16_t nc, int8_t *ctl, int16_t nb, int8_t *buf)
  • iolib/sprintf.c

    r39a696b rb28a12e  
    66*/
    77
    8 #include "all.h"
    9 
    10 extern  int32_t dofmt_(int16_t (*putsub)(), int8_t *format, va_list args);
     8#include "ram.h"
    119
    1210static int8_t   *buff;
    13         static int16_t spsub(int8_t c);
     11static int16_t spsub(int8_t c);
    1412
    1513/*
  • iolib/waitcr.c

    r39a696b rb28a12e  
    66*/
    77
    8 #include "all.h"
    9 
    10 extern  void    xtrap15(void);
     8#include "ram.h"
    119
    1210/*
Note: See TracChangeset for help on using the changeset viewer.