diff --git a/ChangeLog b/ChangeLog index 5fafd1899..3e6fcf61b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-11-11 Tobias Doerffel + + * plugins/flp_import/flp_import.cpp: + include ctype.h + 2006-11-08 Javier Serrano Polo * include/bb_track.h: diff --git a/plugins/flp_import/flp_import.cpp b/plugins/flp_import/flp_import.cpp index 5c34f9596..40237f029 100644 --- a/plugins/flp_import/flp_import.cpp +++ b/plugins/flp_import/flp_import.cpp @@ -65,6 +65,10 @@ #endif +#ifdef HAVE_CTYPE_H +#include +#endif + #define makeID(_c0, _c1, _c2, _c3) \ ( ( _c0 ) | ( ( _c1 ) << 8 ) | ( ( _c2 ) << 16 ) | ( ( _c3 ) << 24 ) )