mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-07 21:19:47 -04:00
14 lines
285 B
C
14 lines
285 B
C
/* $NetBSD: cdefs.h,v 1.13 2014/03/18 17:11:19 christos Exp $ */
|
|
|
|
#ifndef _MACHINE_CDEFS_H_
|
|
#define _MACHINE_CDEFS_H_
|
|
|
|
/* No arch-specific cdefs. */
|
|
#ifdef __arch64__
|
|
#define __ALIGNBYTES ((size_t)0xf)
|
|
#else
|
|
#define __ALIGNBYTES ((size_t)0x7)
|
|
#endif
|
|
|
|
#endif /* !_MACHINE_CDEFS_H_ */
|