From f70ef4f8606f99744252a804229d53a4d97601c1 Mon Sep 17 00:00:00 2001 From: Thomas Wouters Date: Sat, 22 Jul 2000 18:47:25 +0000 Subject: Mass ANSIfication of function definitions. Doesn't cover all 'extern' declarations yet, those come later. --- Python/memmove.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'Python/memmove.c') diff --git a/Python/memmove.c b/Python/memmove.c index 267cf569b5a..f44bf0433a5 100644 --- a/Python/memmove.c +++ b/Python/memmove.c @@ -10,13 +10,10 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. /* A perhaps slow but I hope correct implementation of memmove */ -extern char *memcpy(); +extern char *memcpy(char *, char *, int); char * -memmove(dst, src, n) - char *dst; - char *src; - int n; +memmove(char *dst, char *src, int n) { char *realdst = dst; if (n <= 0) -- cgit v1.2.3