Changeset 7258c6a in buchla-68k for vlib/vwputm.c


Ignore:
Timestamp:
07/09/2017 04:45:34 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
8618599
Parents:
0292fbb
Message:

Use standard integer types.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vlib/vwputm.c

    r0292fbb r7258c6a  
    1818#include <vsdd.h>
    1919
    20 extern  void    vwputs(int *obase, int nw, int fg, int bg, int row, int col, char *str);
     20extern  void    vwputs(int16_t *obase, int16_t nw, int16_t fg, int16_t bg, int16_t row, int16_t col, int8_t *str);
    2121
    2222/*
     
    2626*/
    2727
    28 void vwputm(unsigned int *obase, int nw, int fg, int bg, int row, int col, char *ml[])
     28void vwputm(uint16_t *obase, int16_t nw, int16_t fg, int16_t bg, int16_t row, int16_t col, int8_t *ml[])
    2929{
    3030        while (*ml) {
Note: See TracChangeset for help on using the changeset viewer.