added missing inclusion of ctype.h

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@426 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2006-11-10 23:58:16 +00:00
parent e71c613fbe
commit ba20593377
2 changed files with 9 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2006-11-11 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* plugins/flp_import/flp_import.cpp:
include ctype.h
2006-11-08 Javier Serrano Polo <jasp00/at/terra/dot/es>
* include/bb_track.h:

View File

@@ -65,6 +65,10 @@
#endif
#ifdef HAVE_CTYPE_H
#include <ctype.h>
#endif
#define makeID(_c0, _c1, _c2, _c3) \
( ( _c0 ) | ( ( _c1 ) << 8 ) | ( ( _c2 ) << 16 ) | ( ( _c3 ) << 24 ) )