Use __packed instead of __attribute__((__packed__)).

This commit is contained in:
Maxime Henrion 2003-03-22 00:25:14 +00:00
parent 20839b6fb9
commit aecfcdb824
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=112482

View File

@ -37,6 +37,8 @@
#ifndef _NETINET_IP_H_
#define _NETINET_IP_H_
#include <sys/cdefs.h>
/*
* Definitions for internet protocol version 4.
* Per RFC 791, September 1981.
@ -67,7 +69,7 @@ struct ip {
u_char ip_p; /* protocol */
u_short ip_sum; /* checksum */
struct in_addr ip_src,ip_dst; /* source and dest address */
} __attribute__((__packed__));
} __packed;
#ifdef CTASSERT
CTASSERT(sizeof (struct ip) == 20);