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

    r0292fbb r7258c6a  
    99*/
    1010
    11 #define NULL    (char *)0
     11#define NULL    (int8_t *)0
    1212
    13 char *strrchr(char *sp, char c)
     13int8_t *strrchr(int8_t *sp, int8_t c)
    1414{
    15         register char *r;
     15        register int8_t *r;
    1616
    1717        r = NULL;
Note: See TracChangeset for help on using the changeset viewer.