comparison libiberty/memcpy.c @ 67:f6334be47118

update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
author nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
date Tue, 22 Mar 2011 17:18:12 +0900
parents a06113de4d67
children
comparison
equal deleted inserted replaced
65:65488c3d617d 67:f6334be47118
1 /* memcpy (the standard C function) 1 /* memcpy (the standard C function)
2 This function is in the public domain. */ 2 This function is in the public domain. */
3 3
4 /* 4 /*
5 5
6 @deftypefn Supplemental void* memcpy (void *@var{out}, const void *@var{in}, size_t @var{length}) 6 @deftypefn Supplemental void* memcpy (void *@var{out}, const void *@var{in}, @
7 size_t @var{length})
7 8
8 Copies @var{length} bytes from memory region @var{in} to region 9 Copies @var{length} bytes from memory region @var{in} to region
9 @var{out}. Returns a pointer to @var{out}. 10 @var{out}. Returns a pointer to @var{out}.
10 11
11 @end deftypefn 12 @end deftypefn