From f9a109b3adc5e8647535357500e2a38f0558b5c2 Mon Sep 17 00:00:00 2001 From: Peter Tyser Date: Mon, 20 Apr 2009 11:08:46 -0500 Subject: Replace __attribute references with __attribute__ __attribute__ follows gcc's documented syntax and is generally more common than __attribute. This change is only asthetic and should not affect functionality. Signed-off-by: Peter Tyser --- cpu/mpc86xx/cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpu/mpc86xx') diff --git a/cpu/mpc86xx/cpu.c b/cpu/mpc86xx/cpu.c index c41616d2fb..653a137396 100644 --- a/cpu/mpc86xx/cpu.c +++ b/cpu/mpc86xx/cpu.c @@ -40,7 +40,7 @@ __board_reset(void) { /* Do nothing */ } -void board_reset(void) __attribute((weak, alias("__board_reset"))); +void board_reset(void) __attribute__((weak, alias("__board_reset"))); int -- cgit v1.2.1