diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-06-02 22:13:45 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-06-02 22:13:45 +0000 |
commit | 11de71b0938af5b027b78b0e0db9617ab22a319f (patch) | |
tree | e765ba126df0bb5107eb1fe7f5e819b8f7e4aa07 /src/post/goom/mathtools.h | |
parent | 329d8f32349ce401eaf8b486e496b65f27cbd920 (diff) | |
download | xine-lib-11de71b0938af5b027b78b0e0db9617ab22a319f.tar.gz xine-lib-11de71b0938af5b027b78b0e0db9617ab22a319f.tar.bz2 |
More static/const fixes from Gentoo. These should probably go upstream.
CVS patchset: 8008
CVS date: 2006/06/02 22:13:45
Diffstat (limited to 'src/post/goom/mathtools.h')
-rwxr-xr-x | src/post/goom/mathtools.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/post/goom/mathtools.h b/src/post/goom/mathtools.h index 0e2293c3f..165fc66b0 100755 --- a/src/post/goom/mathtools.h +++ b/src/post/goom/mathtools.h @@ -29,8 +29,7 @@ #define SINCOS(f,s,c) {s=sin(f);c=cos(f);} #endif -extern float sin256[256]; -extern float cos256[256]; +#include "mathtools.c" #endif |