mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 22:04:21 +00:00
sys/param.h was manually adjusted to not define __NetBSD_Version__ since it will be defined by the compiler.
13 lines
No EOL
284 B
C
Vendored
13 lines
No EOL
284 B
C
Vendored
/* $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_ */ |