File:  [DVB] / dietlibc / libcompat / mempcpy.c
Revision 1.3: download - view: text, annotated - select for diffs
Fri May 25 00:21:24 2012 UTC (12 years ago) by leitner
Branches: MAIN
CVS tags: HEAD
use fast memcpy core in mempcpy

#define _GNU_SOURCE
#include <string.h>

void *mempcpy(void* __restrict__ dst, const void* __restrict__ src, size_t n) {
  return memcpy(dst,src,n)+n;
}

LinuxTV legacy CVS <linuxtv.org/cvs>