diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-12-20 14:23:19 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-12-20 14:23:19 +0900 |
commit | 0f92944b23894ebef2cb0e931c59b77017998b34 (patch) | |
tree | c283554b8b3c5e4aec5c13a3abd4ffcf89904916 | |
parent | 1e4c04def54ff320bad1859d1a78a66b6b3ac166 (diff) | |
download | libltdl-0f92944b23894ebef2cb0e931c59b77017998b34.tar.gz libltdl-0f92944b23894ebef2cb0e931c59b77017998b34.zip |
Removed unused code since memcpy is available.r14.1.0
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | ltdl.c | 29 |
1 files changed, 0 insertions, 29 deletions
@@ -459,35 +459,6 @@ strrchr(str, ch) # endif #endif -/* NOTE: Neither bcopy nor the memcpy implementation below can - reliably handle copying in overlapping areas of memory, so - do not rely on this behavior when invoking memcpy later. */ -#if ! HAVE_MEMCPY - -# if HAVE_BCOPY -# define memcpy(dest, src, size) bcopy (src, dest, size) -# else -# define memcpy rpl_memcpy - -static inline char * -memcpy (dest, src, size) - char *dest; - const char *src; - size_t size; -{ - size_t i = 0; - - for (i = 0; i < size; ++i) - { - dest[i] = src[i]; - } - - return dest; -} - -# endif -#endif - /* According to Alexandre Oliva <oliva@lsd.ic.unicamp.br>, ``realloc is not entirely portable'' In any case we want to use the allocator supplied by the user without |