Changeset 7258c6a in buchla-68k for libcio/conwr.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
  • libcio/conwr.c

    r0292fbb r7258c6a  
    1919   ============================================================================
    2020*/
    21 int _conwr(int kind, char *buff, int len)
     21int16_t _conwr(int16_t kind, int8_t *buff, int16_t len)
    2222{
    23         register int count;
     23        register int16_t count;
    2424
    2525        for (count = 0; count < len; ++count)
Note: See TracChangeset for help on using the changeset viewer.