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

    r0292fbb r7258c6a  
    99#include "ctype.h"
    1010
    11 long atol(char *cp)
     11int32_t atol(int8_t *cp)
    1212{
    13         register long n;
    14         register short sign;
     13        register int32_t n;
     14        register int16_t sign;
    1515
    1616        sign = 0;
Note: See TracChangeset for help on using the changeset viewer.