Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/machine/spu/spu_timer_internal.h')
-rw-r--r--newlib/libc/machine/spu/spu_timer_internal.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/newlib/libc/machine/spu/spu_timer_internal.h b/newlib/libc/machine/spu/spu_timer_internal.h
index 132235ad8..a438561b9 100644
--- a/newlib/libc/machine/spu/spu_timer_internal.h
+++ b/newlib/libc/machine/spu/spu_timer_internal.h
@@ -53,12 +53,12 @@ typedef enum spu_timer_state
typedef struct spu_timer
{
- int tmout __attribute__ ((__aligned__ (16))); /* Time until expiration (tb). */
- int intvl __attribute__ ((__aligned__ (16))); /* Interval. */
- int id __attribute__ ((__aligned__ (16)));
- spu_timer_state_t state __attribute__ ((__aligned__ (16)));
- void (*func) (int) __attribute__ ((__aligned__ (16))); /* Handler. */
- struct spu_timer *next __attribute__ ((__aligned__ (16)));
+ int tmout __attribute__ ((aligned (16))); /* Time until expiration (tb). */
+ int intvl __attribute__ ((aligned (16))); /* Interval. */
+ int id __attribute__ ((aligned (16)));
+ spu_timer_state_t state __attribute__ ((aligned (16)));
+ void (*func) (int) __attribute__ ((aligned (16))); /* Handler. */
+ struct spu_timer *next __attribute__ ((aligned (16)));
} spu_timer_t;