Changeset 7258c6a in buchla-68k for include/rawio.h


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
  • include/rawio.h

    r0292fbb r7258c6a  
    66*/
    77
    8 int     getln(int unit, int nb, char *buf);
    9 int     getrln(int unit, int nb, char *buf);
    10 int     readln(int unit, int nc, char *ctl, int nb, char *buf);
     8int16_t getln(int16_t unit, int16_t nb, int8_t *buf);
     9int16_t getrln(int16_t unit, int16_t nb, int8_t *buf);
     10int16_t readln(int16_t unit, int16_t nc, int8_t *ctl, int16_t nb, int8_t *buf);
    1111
    1212/* The following should really be void ... */
    1313
    14 void    writeln(int unit, char *buf);
     14void    writeln(int16_t unit, int8_t *buf);
     15
     16
Note: See TracChangeset for help on using the changeset viewer.