diff options
Diffstat (limited to 'crypto/kerberosIV/lib/roken/memmove.c')
-rw-r--r-- | crypto/kerberosIV/lib/roken/memmove.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto/kerberosIV/lib/roken/memmove.c b/crypto/kerberosIV/lib/roken/memmove.c index 315ff05..e3f7d5a 100644 --- a/crypto/kerberosIV/lib/roken/memmove.c +++ b/crypto/kerberosIV/lib/roken/memmove.c @@ -38,14 +38,16 @@ #ifdef HAVE_CONFIG_H #include <config.h> -RCSID("$Id: memmove.c,v 1.5 1997/04/01 08:19:05 joda Exp $"); +RCSID("$Id: memmove.c,v 1.6 1997/07/11 20:20:30 assar Exp $"); #endif /* * memmove for systems that doesn't have it */ +#ifdef HAVE_SYS_TYPES_H #include <sys/types.h> +#endif void* memmove(void *s1, const void *s2, size_t n) { |