home *** CD-ROM | disk | FTP | other *** search
- head 1.1;
- access;
- symbols
- version39-41:1.1;
- locks;
- comment @ * @;
-
-
- 1.1
- date 92.06.08.17.58.42; author mwild; state Exp;
- branches;
- next ;
-
-
- desc
- @initial checkin
- @
-
-
- 1.1
- log
- @Initial revision
- @
- text
- @#if defined(LIBC_SCCS) && !defined(lint)
- static char sccsid[] = "@@(#)memcpy.c 1.0 (mw)";
- #endif /* LIBC_SCCS and not lint */
-
- #include <sys/stdc.h>
- #include <string.h>
-
- #include <inline/exec.h>
-
- void *
- memcpy(dst0, src0, length)
- void *dst0;
- const void *src0;
- size_t length;
- {
- CopyMem ((char *)src0, dst0, length);
- return(dst0);
- }
- @
-