diff options
Diffstat (limited to 'texinfo/libtxi/memcpy.c')
-rw-r--r-- | texinfo/libtxi/memcpy.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/texinfo/libtxi/memcpy.c b/texinfo/libtxi/memcpy.c deleted file mode 100644 index 521625464cd..00000000000 --- a/texinfo/libtxi/memcpy.c +++ /dev/null @@ -1,20 +0,0 @@ -/* Copy LEN bytes starting at SRCADDR to DESTADDR. Result undefined - if the source overlaps with the destination. - Return DESTADDR. */ - -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - -char * -memcpy (destaddr, srcaddr, len) - char *destaddr; - const char *srcaddr; - int len; -{ - char *dest = destaddr; - - while (len-- > 0) - *destaddr++ = *srcaddr++; - return dest; -} |