From 877bee167fa9a5d56eda3f7fd208c3548f0c2566 Mon Sep 17 00:00:00 2001 From: Stephen Torri Date: Tue, 16 Sep 2003 02:07:18 +0000 Subject: Removed header that providing nothing needed to the build. Definition of unsigned long long was replaced with uint64_t. The declaration of 'unsigned long long' is a new feature in C99. Since not all the features of C99 are supported in gcc and the ccc compiler a simple type change cleared the message. CVS patchset: 5390 CVS date: 2003/09/16 02:07:18 --- src/xine-utils/memcpy.c | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'src') diff --git a/src/xine-utils/memcpy.c b/src/xine-utils/memcpy.c index 945cd33f0..618a5bcaf 100644 --- a/src/xine-utils/memcpy.c +++ b/src/xine-utils/memcpy.c @@ -44,7 +44,6 @@ #include #include #include "xine_internal.h" -#include "xineutils.h" void *(* xine_fast_memcpy)(void *to, const void *from, size_t len); @@ -382,11 +381,7 @@ static struct { char *name; void *(* function)(void *to, const void *from, size_t len); -#ifdef _MSC_VER - uint64_t time; /* This type could be used for non-MSC build too! */ -#else - unsigned long long time; -#endif /* _MSC_VER */ + unsigned long long time; /* This type could be used for non-MSC build too! */ uint32_t cpu_require; } memcpy_method[] = @@ -458,11 +453,7 @@ static void update_fast_memcpy(void *this_gen, xine_cfg_entry_t *entry) { #define BUFSIZE 1024*1024 void xine_probe_fast_memcpy(config_values_t *config) { -#ifdef _MSC_VER uint64_t t; -#else - unsigned long long t; -#endif /* _MSC_VER */ char *buf1, *buf2; int i, j, best; -- cgit v1.2.3