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

    r0292fbb r7258c6a  
    1111*/
    1212
    13 void *memccpy(void *vp1, void *vp2, char c, int n)
     13void *memccpy(void *vp1, void *vp2, int8_t c, int16_t n)
    1414{
    15         char *cp1 = vp1;
    16         char *cp2 = vp2;
     15        int8_t *cp1 = vp1;
     16        int8_t *cp2 = vp2;
    1717
    1818        while (--n >= 0)
Note: See TracChangeset for help on using the changeset viewer.