mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 17:01:15 +02:00
memcpy -> memmove
git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@1278 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
@@ -167,7 +167,7 @@ off_t lseek ();
|
||||
|
||||
#if ! defined HAVE_MEMPCPY && ! defined mempcpy
|
||||
/* Be CAREFUL that there are no side effects in N. */
|
||||
# define mempcpy(D, S, N) ((void *) ((char *) memcpy (D, S, N) + (N)))
|
||||
# define mempcpy(D, S, N) ((void *) ((char *) memmove (D, S, N) + (N)))
|
||||
#endif
|
||||
|
||||
/* These are wrappers for functions/macros from GNU libc.
|
||||
|
Reference in New Issue
Block a user