From 2843469876a543a1a5beaa27b9d4ae8ab0e201d0 Mon Sep 17 00:00:00 2001 From: Bertrik Sikken Date: Mon, 28 Apr 2008 16:18:04 +0000 Subject: Moved atoi declaration to stdlib.h. Deleted atoi.h git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17280 a1c6a512-1295-4272-9138-f99709370657 --- firmware/include/atoi.h | 25 ------------------------- firmware/include/stdlib.h | 2 ++ 2 files changed, 2 insertions(+), 25 deletions(-) delete mode 100644 firmware/include/atoi.h (limited to 'firmware/include') diff --git a/firmware/include/atoi.h b/firmware/include/atoi.h deleted file mode 100644 index 1188796..0000000 --- a/firmware/include/atoi.h +++ /dev/null @@ -1,25 +0,0 @@ -/*************************************************************************** - * __________ __ ___. - * Open \______ \ ____ ____ | | _\_ |__ _______ ___ - * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / - * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < - * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ - * \/ \/ \/ \/ \/ - * $Id$ - * - * Copyright (C) 2002 by Felix Arends - * - * All files in this archive are subject to the GNU General Public License. - * See the file COPYING in the source tree root for full license agreement. - * - * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY - * KIND, either express or implied. - * - ****************************************************************************/ - -#ifndef __ATOI_H__ -#define __ATOI_H__ - -int atoi (const char *str); - -#endif /* __ATOI_H__ */ diff --git a/firmware/include/stdlib.h b/firmware/include/stdlib.h index 1f4fb88..504b592 100644 --- a/firmware/include/stdlib.h +++ b/firmware/include/stdlib.h @@ -41,6 +41,8 @@ int rand(void); #ifdef SIMULATOR void exit(int status); #endif + +int atoi (const char *str); #ifdef __cplusplus } -- cgit v1.1