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

    r0292fbb r7258c6a  
    88#include "stdio.h"
    99
    10 extern  int     getc(FILE *ptr);
     10extern  int16_t getc(FILE *ptr);
    1111
    1212/*
     
    1919*/
    2020
    21 int getw(FILE *stream)
     21int16_t getw(FILE *stream)
    2222{
    23         int temp;
    24         register char *t;
     23        int16_t temp;
     24        register int8_t *t;
    2525
    2626        t = &temp;
Note: See TracChangeset for help on using the changeset viewer.