changeset 1048:526415575295 HEAD

No i_memmove here, just memmove.
author Timo Sirainen <tss@iki.fi>
date Tue, 28 Jan 2003 21:32:18 +0200
parents c8adf40c8f42
children c41787e8c3f4
files src/lib/macros.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/lib/macros.h	Mon Jan 27 10:09:52 2003 +0200
+++ b/src/lib/macros.h	Tue Jan 28 21:32:18 2003 +0200
@@ -48,7 +48,7 @@
       (defined (_CALL_SYSV) || defined (_WIN32))
 #    define VA_COPY(ap1, ap2) (*(ap1) = *(ap2))
 #  elif defined (VA_COPY_AS_ARRAY)
-#    define VA_COPY(ap1, ap2) i_memmove ((ap1), (ap2), sizeof (va_list))
+#    define VA_COPY(ap1, ap2) memmove ((ap1), (ap2), sizeof (va_list))
 #  else /* va_list is a pointer */
 #    define VA_COPY(ap1, ap2) ((ap1) = (ap2))
 #  endif /* va_list is a pointer */