diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2008-04-28 16:18:04 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2008-04-28 16:18:04 +0000 |
| commit | 2843469876a543a1a5beaa27b9d4ae8ab0e201d0 (patch) | |
| tree | 74a487c754d1bd63532b500f603492bec5bbcc2a /apps/plugin.c | |
| parent | 5b1e86c35fa7e03a841c1d58d869e925f7638904 (diff) | |
| download | rockbox-2843469876a543a1a5beaa27b9d4ae8ab0e201d0.zip rockbox-2843469876a543a1a5beaa27b9d4ae8ab0e201d0.tar.gz rockbox-2843469876a543a1a5beaa27b9d4ae8ab0e201d0.tar.bz2 rockbox-2843469876a543a1a5beaa27b9d4ae8ab0e201d0.tar.xz | |
Moved atoi declaration to stdlib.h. Deleted atoi.h
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17280 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
| -rw-r--r-- | apps/plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index b3710e4..aa3f73e 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -20,7 +20,7 @@ #include <ctype.h> #include <string.h> #include <sprintf.h> -#include <atoi.h> +#include <stdlib.h> #include "debug.h" #include "i2c.h" #include "lang.h" |