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

    r46d8069 r0580615  
    1616typedef unsigned int    uint;
    1717
    18 extern int      vputc();
     18extern  void    vputc(unsigned *sbase, unsigned row, unsigned col, unsigned c, unsigned attrib);
    1919
    2020/*
     
    2727*/
    2828
    29 vputs(sbase, row, col, str, attrib)
    30 uint *sbase, row, col, attrib;
    31 char *str;
     29void vputs(uint *sbase, uint row, uint col, uint attrib, char *str)
    3230{
    3331        uint    c;
     
    5957*/
    6058
    61 vputsa(sbase, row, col, str, attrib)
    62 uint *sbase, row, col, *attrib;
    63 char *str;
     59void vputsa(uint *sbase, uint row, uint col, uint *attrib, char *str)
    6460{
    6561        uint    c;
Note: See TracChangeset for help on using the changeset viewer.