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

    r0292fbb r7258c6a  
    1616*/
    1717
    18 int fread(char *buffer, unsigned size, int number, FILE *stream)
     18int16_t fread(int8_t *buffer, uint16_t size, int16_t number, FILE *stream)
    1919{
    20         int total;
    21         register int c,i;
     20        int16_t total;
     21        register int16_t c,i;
    2222
    2323        for (total = 0; total < number; ++total) {
Note: See TracChangeset for help on using the changeset viewer.