summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorStephen Torri <storri@users.sourceforge.net>2003-09-16 02:07:18 +0000
committerStephen Torri <storri@users.sourceforge.net>2003-09-16 02:07:18 +0000
commit877bee167fa9a5d56eda3f7fd208c3548f0c2566 (patch)
treeaf79bb794e1283a22eb46f438cffd26e832b09a4 /src
parent49814daf255256395eb5e830036029654ae83bd0 (diff)
downloadxine-lib-877bee167fa9a5d56eda3f7fd208c3548f0c2566.tar.gz
xine-lib-877bee167fa9a5d56eda3f7fd208c3548f0c2566.tar.bz2
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
Diffstat (limited to 'src')
-rw-r--r--src/xine-utils/memcpy.c11
1 files changed, 1 insertions, 10 deletions
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 <stdlib.h>
#include <string.h>
#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;