Changeset 0580615 in buchla-68k for vlib/vmput.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
  • vlib/vmput.c

    r46d8069 r0580615  
    2121typedef unsigned int    uint;
    2222
    23 extern  int     vputc();
     23extern  void    vputc(unsigned *sbase, unsigned row, unsigned col, unsigned c, unsigned attrib);
    2424
    2525/*
     
    3030*/
    3131
    32 vmput(sbase, row, col, ms, ma)
    33 uint *sbase, row, col, ma;
    34 char *ms[];
     32void vmput(uint *sbase, uint row, uint col, uint ma, char *ms[])
    3533{
    3634        register uint c, tc, tr;
     
    6058*/
    6159
    62 vmputa(sbase, row, col, ms, ma)
    63 uint *sbase, row, col, *ma[];
    64 char *ms[];
     60void vmputa(uint *sbase, uint row, uint col, uint *ma[], char *ms[])
    6561{
    6662        register uint c, tc, tr;
Note: See TracChangeset for help on using the changeset viewer.