From cc03b29695152a0223c2f34e147181702e1d3e61 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Tue, 15 May 2012 21:26:09 +0000 Subject: Avoid plain "aligned" attributes in installed headers. --- sysdeps/unix/sysv/linux/s390/sys/ucontext.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sysdeps/unix/sysv/linux/s390/sys/ucontext.h') diff --git a/sysdeps/unix/sysv/linux/s390/sys/ucontext.h b/sysdeps/unix/sysv/linux/s390/sys/ucontext.h index 5dd0234613..e66854d9db 100644 --- a/sysdeps/unix/sysv/linux/s390/sys/ucontext.h +++ b/sysdeps/unix/sysv/linux/s390/sys/ucontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc. +/* Copyright (C) 2000-2012 Free Software Foundation, Inc. Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com). This file is part of the GNU C Library. @@ -33,7 +33,7 @@ typedef struct { unsigned long mask; unsigned long addr; -} __attribute__ ((aligned(8))) __psw_t; +} __attribute__ ((__aligned__(8))) __psw_t; /* Type for a general-purpose register. */ typedef unsigned long greg_t; @@ -49,7 +49,7 @@ typedef unsigned long greg_t; # define NGREG 36 #endif /* Must match kernels psw_t alignment. */ -typedef greg_t gregset_t[NGREG] __attribute__ ((aligned(8))); +typedef greg_t gregset_t[NGREG] __attribute__ ((__aligned__(8))); typedef union { -- cgit v1.2.1