1
0
Fork 0
forked from len0rd/rockbox

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,11 +1,11 @@
/*
assert.h
assert.h
*/
#undef assert
#ifdef NDEBUG /* required by ANSI standard */
#define assert(p) ((void)0)
#define assert(p) ((void)0)
#else
#ifdef __STDC__