From c0851c650ff75d11d301ce4965f610bae9a565be Mon Sep 17 00:00:00 2001 From: ocean Date: Thu, 27 Oct 2005 02:55:18 +0000 Subject: * missing.h, missing/memcmp.c, missing/memmove.c: ANSI compatible interface. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9470 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- missing.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'missing.h') diff --git a/missing.h b/missing.h index 675d0d5e17..5b4dcc2747 100644 --- a/missing.h +++ b/missing.h @@ -76,12 +76,12 @@ extern int isnan(double); /* #ifndef HAVE_MEMCMP -extern int memcmp(char *, char *, int); +extern int memcmp(const void *, const void *, size_t); #endif */ #ifndef HAVE_MEMMOVE -extern void *memmove(void *, void *, int); +extern void *memmove(void *, const void *, size_t); #endif /* -- cgit v1.2.3