e8bec33be1
again. This was changed in sys/socket.h r1.51 to work around fallout from the IPv6 aux data migration. It broke the historic ABI on some platforms. This commit restores compatibility for netbsd32 code on such platforms and provides a template for future changes to the CMSG_* alignment. Revert PCC/Clang workarounds in postfix and tmux.
13 lines
265 B
C
13 lines
265 B
C
/* $NetBSD: cdefs.h,v 1.9 2012/01/20 14:08:06 joerg Exp $ */
|
|
|
|
#ifndef _I386_CDEFS_H_
|
|
#define _I386_CDEFS_H_
|
|
|
|
#if defined(_STANDALONE)
|
|
#define __compactcall __attribute__((__regparm__(3)))
|
|
#endif
|
|
|
|
#define __ALIGNBYTES (sizeof(int) - 1)
|
|
|
|
#endif /* !_I386_CDEFS_H_ */
|