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

    r0292fbb r7258c6a  
    99*/
    1010
    11 char *strcpy(char *s1, char *s2)
     11int8_t *strcpy(int8_t *s1, int8_t *s2)
    1212{
    13         register char *os1;
     13        register int8_t *os1;
    1414
    1515        os1 = s1;
Note: See TracChangeset for help on using the changeset viewer.