diff options
| author | Nils Wallménius <nils@rockbox.org> | 2012-05-07 18:27:46 +0200 |
|---|---|---|
| committer | Nils Wallménius <nils@rockbox.org> | 2012-05-07 18:43:12 +0200 |
| commit | 7803f31c531c75c75d57513caa14caa934edcf19 (patch) | |
| tree | d17e992acdd80e74edbe9b9a71d676d20d2c389a /apps/plugin.h | |
| parent | 3f61caa0cd7e818416be08778f356efd54e596fb (diff) | |
| download | rockbox-7803f31c531c75c75d57513caa14caa934edcf19.zip rockbox-7803f31c531c75c75d57513caa14caa934edcf19.tar.gz rockbox-7803f31c531c75c75d57513caa14caa934edcf19.tar.bz2 rockbox-7803f31c531c75c75d57513caa14caa934edcf19.tar.xz | |
Don't reinvent ctype.h functions
Remove ctype.h functions in text_editor and rockboy,
fix #define name clash in mpegplayer.
Change-Id: Icb40cf45e27b793c62cb095197757a27f508f344
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 4091cec..3f63b9a 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -34,6 +34,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <ctype.h> #include "string-extra.h" #include "gcc_extensions.h" |