Annotation of coherent/b/lib/libc/string/memcpy.c, revision 1.1.1.1

1.1       root        1: /*
                      2:  * memcpy.c
                      3:  * ANSI 4.11.2.1.
                      4:  * Copy memory.
                      5:  */
                      6: 
                      7: #include <string.h>
                      8: 
                      9: char *memcpy(s1, s2, n) char *s1; register char *s2; register size_t n;
                     10: {
                     11:        register char *cp;
                     12: 
                     13:        for (cp = s1; n--; )
                     14:                *cp++ = *s2++;
                     15:        return (s1);
                     16: }

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.