update dev300-m58
[ooovba.git] / dmake / unix / bsd43 / vf / memcpy.c
blobda69372080174138c0c6934e1f468268bd2c225a
1 /* RCS $Id: memcpy.c,v 1.1.1.1 2000-09-22 15:33:34 hr Exp $
2 --
3 -- SYNOPSIS
4 -- memcpy
5 --
6 -- DESCRIPTION
7 -- BSD didn't have this in the library many moons ago.
8 --
9 -- AUTHOR
10 -- Dennis Vadura, dvadura@dmake.wticorp.com
12 -- WWW
13 -- http://dmake.wticorp.com/
15 -- COPYRIGHT
16 -- Copyright (c) 1996,1997 by WTI Corp. All rights reserved.
17 --
18 -- This program is NOT free software; you can redistribute it and/or
19 -- modify it under the terms of the Software License Agreement Provided
20 -- in the file <distribution-root>/readme/license.txt.
22 -- LOG
23 -- Use cvs log to obtain detailed change logs.
26 char *
27 memcpy(t, f, n)
28 register char *t, *f;
29 register n;
31 register char *p = t;
33 while( --n >= 0 ) *t++ = *f++;
35 return (p);