1
0
Fork 0
forked from len0rd/rockbox

workaround weird gcc behaviour

it might a bug in the 4 years old gcc version, but __ASSEMBLER__ is not
defined when preprocessing .S files with -std=gnu99

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28026 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rafaël Carré 2010-09-07 14:58:10 +00:00
parent 7791843a37
commit 5a329ded5c

View file

@ -23,6 +23,12 @@ along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
*/
/* workaround gcc 3.4.6 -std=gnu99 */
#ifndef __ASSEMBLER
#define __ASSEMBLER__
#endif
#include "demac_config.h"
/* NOTE: The following need to be kept in sync with parser.h */