Changeset 0580615 in buchla-68k for iolib


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.

Location:
iolib
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • iolib/dofmt.c

    r46d8069 r0580615  
    3838
    3939#if     CRUFTY
    40 extern  long    uldiv();
     40extern  long    uldiv(long divid, long divis);
    4141extern  long    uldivr;
    4242#endif
    4343
    44 long
    45 dofmt_(putsub, format, args)
    46 register int (*putsub)();
    47 register char *format;
    48 va_list args;
     44long dofmt_(int (*putsub)(), char *format, va_list args)
    4945{
    5046        register int fcode;
  • iolib/mdump.c

    r46d8069 r0580615  
    3939*/
    4040
    41 static
    42 pipc(chars, length)
    43 char chars[];
    44 int length;
     41static void pipc(char chars[], int length)
    4542{
    4643        int     i;
     
    6360*/
    6461
    65 mdump(begin, end, start)
    66 char *begin, *end;
    67 long start;
     62void mdump(char *begin, char *end, long start)
    6863{
    6964        long    i, ii;
  • iolib/pause.c

    r46d8069 r0580615  
    88#include "biosdefs.h"
    99
    10 extern  int     waitcr(), writeln();
     10extern  int     waitcr(void);
     11extern  void    writeln(int unit, char *buf);
    1112
    12 pause(s)
    13 char *s;
     13void pause(char *s)
    1414{
    1515        writeln(CON_DEV, s);
  • iolib/printf.c

    r46d8069 r0580615  
    1717#include "stdarg.h"
    1818
    19 extern  long    dofmt_();
     19extern  long    dofmt_(int (*putsub)(), char *format, va_list args);
    2020
    21 static  int     fpsub();
     21        static int fpsub(int c);
    2222
    2323/*
     
    4444*/
    4545
    46 static
    47 int
    48 fpsub(c)
    49 int c;
     46static int fpsub(int c)
    5047{
    5148        /* KLUDGE:  since we aren't Unix(tm) we prepend a CR to LF's */
  • iolib/rawio.c

    r46d8069 r0580615  
    6969
    7070
    71 int
    72 readln(unit,nc,ctl,nb,buf)
    73 int unit;
    74 int nc;
    75 char *ctl;
    76 int nb;
    77 char *buf;
     71int readln(int unit, int nc, char *ctl, int nb, char *buf)
    7872{
    7973        register char *cp;
     
    110104 */
    111105
    112 int
    113 getln(unit,nb,buf)
    114 int unit;
    115 int nb;
    116 char *buf;
     106int getln(int unit, int nb, char *buf)
    117107{
    118108        register char *bp;
     
    179169 */
    180170
    181 int
    182 getrln(unit,nb,buf)
    183 int unit;
    184 int nb;
    185 char *buf;
     171int getrln(int unit, int nb, char *buf)
    186172{
    187173        register char *bp;
     
    226212 */
    227213
    228 writeln(unit,buf)
    229 int unit;
    230 char *buf;
     214void writeln(int unit, char *buf)
    231215{
    232216        register char *bp;
  • iolib/sprintf.c

    r46d8069 r0580615  
    88#include "stdarg.h"
    99
    10 extern long     dofmt_();
     10extern  long    dofmt_(int (*putsub)(), char *format, va_list args);
    1111
    1212static char     *buff;
    13 static int      spsub();
     13        static int spsub(char c);
    1414
    1515/*
     
    3838*/
    3939
    40 static
    41 int
    42 spsub(c)
    43 char c;
     40static int spsub(char c)
    4441{
    4542        return((*buff++ = c) & 0xFF);
  • iolib/waitcr.c

    r46d8069 r0580615  
    99#include "stddefs.h"
    1010
    11 extern  int     xtrap15();      /* the ROMP trap */
     11extern  void    xtrap15(void);
    1212
    1313/*
     
    2121*/
    2222
    23 int
    24 waitcr()
     23int waitcr(void)
    2524{
    2625        int     c;
Note: See TracChangeset for help on using the changeset viewer.