From e52211654153ff16d8f1140195e46ac8da847b33 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 10 Jun 2000 21:55:11 +0000 Subject: [PATCH] Update. 2000-06-10 Ulrich Drepper * sysdeps/unix/sysv/linux/bits/socket.h (struct cmsghdr): Mark __cmsg_data field with __extension__. --- ChangeLog | 5 +++++ sysdeps/unix/sysv/linux/bits/socket.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3f40c95..5e8d6d3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-06-10 Ulrich Drepper + + * sysdeps/unix/sysv/linux/bits/socket.h (struct cmsghdr): Mark + __cmsg_data field with __extension__. + 2000-06-10 David Mosberger * sysdeps/unix/sysv/linux/ia64/syscall.S: Fix it so it actually works. diff --git a/sysdeps/unix/sysv/linux/bits/socket.h b/sysdeps/unix/sysv/linux/bits/socket.h index bd3dd9f..1c8b30b 100644 --- a/sysdeps/unix/sysv/linux/bits/socket.h +++ b/sysdeps/unix/sysv/linux/bits/socket.h @@ -228,7 +228,7 @@ struct cmsghdr int cmsg_level; /* Originating protocol. */ int cmsg_type; /* Protocol specific type. */ #if !defined __STRICT_ANSI__ && defined __GNUC__ && __GNUC__ >= 2 - unsigned char __cmsg_data[0]; /* Ancillary data. */ + __extension__ unsigned char __cmsg_data[0]; /* Ancillary data. */ /* XXX Perhaps this should be removed. */ #endif }; -- 2.7.4