diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-06-02 19:19:36 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-06-02 19:19:36 +0000 |
commit | 11fbb70a96ec38339e919bc0e56c97d6abc0acd2 (patch) | |
tree | 4b56d01b164f41e346d7507e1f03ae268ca902c2 /src/input/libdvdnav/md5.c | |
parent | 27e6177fa3cfdfd59f74841c5ccd420c63fd1a2d (diff) | |
download | xine-lib-11fbb70a96ec38339e919bc0e56c97d6abc0acd2.tar.gz xine-lib-11fbb70a96ec38339e919bc0e56c97d6abc0acd2.tar.bz2 |
Allow building of xine-lib with -Werror-implicit-function-declaration by
ensuring that all used functions have a proper declaration. (Gentoo)
CVS patchset: 8004
CVS date: 2006/06/02 19:19:36
Diffstat (limited to 'src/input/libdvdnav/md5.c')
-rw-r--r-- | src/input/libdvdnav/md5.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/input/libdvdnav/md5.c b/src/input/libdvdnav/md5.c index 3ee9abae5..2bfdddee4 100644 --- a/src/input/libdvdnav/md5.c +++ b/src/input/libdvdnav/md5.c @@ -26,14 +26,8 @@ #include <sys/types.h> -#if STDC_HEADERS || defined _LIBC -# include <stdlib.h> -# include <string.h> -#else -# ifndef HAVE_MEMCPY -# define memcpy(d, s, n) bcopy ((s), (d), (n)) -# endif -#endif +#include <stdlib.h> +#include <string.h> #include "md5.h" /* #include "unlocked-io.h" */ |