diff options
| author | thorpej <thorpej@NetBSD.org> | 1999-08-27 01:52:26 +0000 |
|---|---|---|
| committer | thorpej <thorpej@NetBSD.org> | 1999-08-27 01:52:26 +0000 |
| commit | d4d4f37bca2cd292fa08b84c8c482c22def4d1af (patch) | |
| tree | 2f6624ccd5e191a64a551c553d28855f3c2b9108 /sys | |
| parent | 8d4e2a92939fb3253e485deca71bcbc31993fe39 (diff) | |
packed -> __packed__
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/net/if_arp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_arp.h b/sys/net/if_arp.h index 4100035c485..54d2adea838 100644 --- a/sys/net/if_arp.h +++ b/sys/net/if_arp.h @@ -1,4 +1,4 @@ -/* $NetBSD: if_arp.h,v 1.19 1999/05/08 01:42:24 matt Exp $ */ +/* $NetBSD: if_arp.h,v 1.20 1999/08/27 01:52:26 thorpej Exp $ */ /* * Copyright (c) 1986, 1993 @@ -79,7 +79,7 @@ struct arphdr { #define ar_spa(ap) (((caddr_t)((ap)+1))+ (ap)->ar_hln) #define ar_tha(ap) (((caddr_t)((ap)+1))+ (ap)->ar_hln+(ap)->ar_pln) #define ar_tpa(ap) (((caddr_t)((ap)+1))+2*(ap)->ar_hln+(ap)->ar_pln) -} __attribute__((packed)); +} __attribute__((__packed__)); /* |
