Ignore:
Timestamp:
Jan 20, 2004, 2:35:09 AM (22 years ago)
Author:
bird
Message:

Think I got that mempcpy() right now.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/include/string.h

    • Property cvs2svn:cvs-rev changed from 1.7 to 1.8
    r1016 r1017  
    172172 */
    173173#if __BSD_VISIBLE
    174 void * mempcpy(void *, const void *, size_t);
     174void * __mempcpy(void *, const void *, size_t);
     175#define mempcpy(d, s, n)    __mempcpy(d, s, n)
    175176#endif
    176177/* bird: GNU stuff - end */
Note: See TracChangeset for help on using the changeset viewer.