Remove tabs in firmware path (taking into account the original spacing).

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24864 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Andree Buschmann 2010-02-22 21:24:09 +00:00
parent 3f5f3524d4
commit 0b7dcd69c8
24 changed files with 653 additions and 653 deletions

View file

@ -1,5 +1,5 @@
#ifndef _STDIO_H_
#define _STDIO_H_
#define _STDIO_H_
#include <_ansi.h>
@ -10,22 +10,22 @@
#include <stdarg.h>
#ifndef NULL
#define NULL 0
#define NULL 0
#endif
#define EOF (-1)
#define EOF (-1)
#ifndef SEEK_SET
#define SEEK_SET 0 /* set file offset to offset */
#define SEEK_SET 0 /* set file offset to offset */
#endif
#ifndef SEEK_CUR
#define SEEK_CUR 1 /* set file offset to current plus offset */
#define SEEK_CUR 1 /* set file offset to current plus offset */
#endif
#ifndef SEEK_END
#define SEEK_END 2 /* set file offset to EOF plus offset */
#define SEEK_END 2 /* set file offset to EOF plus offset */
#endif
#define TMP_MAX 26
#define TMP_MAX 26
#ifdef __GNUC__
#define __VALIST __gnuc_va_list