mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-08 13:39:25 -04:00
14 lines
274 B
C
14 lines
274 B
C
/* $NetBSD: cdefs.h,v 1.3 2014/03/18 17:11:19 christos Exp $ */
|
|
|
|
#ifndef _MACHINE_CDEFS_H_
|
|
#define _MACHINE_CDEFS_H_
|
|
|
|
/* We're elf only: inspected by sys/cdefs.h */
|
|
#ifndef __ELF__
|
|
#define __ELF__
|
|
#endif
|
|
|
|
#define __ALIGNBYTES ((size_t)15)
|
|
|
|
#endif /* !_MACHINE_CDEFS_H_ */
|