Changeset 7258c6a in buchla-68k for libsm/strccpy.c


Ignore:
Timestamp:
07/09/2017 04:45:34 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
4aad7a763fe80f5be7bf52021129272ae3936fa8
Children:
8618599
Parents:
0292fbb
Message:

Use standard integer types.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libsm/strccpy.c

    r0292fbb r7258c6a  
    1616 */
    1717
    18 char *strccpy(char *s1, char *s2, char c)
     18int8_t *strccpy(int8_t *s1, int8_t *s2, int8_t c)
    1919{
    20         register char *os1;
    21         register char x;
     20        register int8_t *os1;
     21        register int8_t x;
    2222
    2323        os1 = s1;
Note: See TracChangeset for help on using the changeset viewer.