diff options
author | Matt Turner <mattst88@gmail.com> | 2011-08-02 00:30:15 -0400 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2011-08-02 00:30:15 -0400 |
commit | 9edc780fc72c1dac9a1d9385cc74abf487a5d1bd (patch) | |
tree | a974dabbcd9a501258ee6af0d52fc78e7d4e155d /src/Panner.c | |
parent | 017fcf81745d7a58a57a040fce86063719431f60 (diff) |
Fix implicit function declarations.
Signed-off-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'src/Panner.c')
-rw-r--r-- | src/Panner.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Panner.c b/src/Panner.c index 3c454d7..fce1781 100644 --- a/src/Panner.c +++ b/src/Panner.c @@ -34,7 +34,7 @@ in this Software without prior written authorization from the X Consortium. #include <X11/Xmu/Misc.h> /* for Min */ #include <X11/Xmu/Drawing.h> #include <ctype.h> /* for isascii() etc. */ -#include <math.h> /* for atof() */ +#include <stdlib.h> /* for atof() */ extern Bool XmuDistinguishablePixels(); /* not defined in any Xmu headers */ |