diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2008-05-23 23:43:00 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2008-05-23 23:43:00 +0200 |
commit | 37f4983b76f90efb4e5715f3eca693daf668310a (patch) | |
tree | 0b374d0f89f92d31191dc75b43ff35c2d2e5712a /src/input/libreal/real.c | |
parent | 157f5234c463abe1b23a2f86dd182f40f99020fe (diff) | |
download | xine-lib-37f4983b76f90efb4e5715f3eca693daf668310a.tar.gz xine-lib-37f4983b76f90efb4e5715f3eca693daf668310a.tar.bz2 |
Remove MIN/MAX macro definitions on unit.
Now that the macro are either imported from the system or defined by
configure. don't define them in every source file.
Diffstat (limited to 'src/input/libreal/real.c')
-rw-r--r-- | src/input/libreal/real.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/input/libreal/real.c b/src/input/libreal/real.c index f4698a4fb..c0e11fa00 100644 --- a/src/input/libreal/real.c +++ b/src/input/libreal/real.c @@ -48,9 +48,6 @@ static const unsigned char xor_table[] = { #define _X_BE_32C(x,y) do { *(uint32_t *)(x) = be2me_32((y)); } while(0) #define _X_LE_32C(x,y) do { *(uint32_t *)(x) = le2me_32((y)); } while(0) -#define MAX(x,y) ((x>y) ? x : y) - - static void hash(char *field, char *param) { uint32_t a, b, c, d; |