mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
sys/param.h was manually adjusted to not define __NetBSD_Version__ since it will be defined by the compiler.
20 lines
427 B
C
Vendored
20 lines
427 B
C
Vendored
/* $NetBSD: int_const.h,v 1.1 2014/09/19 17:36:26 matt Exp $ */
|
|
|
|
#ifndef __INTMAX_C_SUFFIX__
|
|
|
|
#define __INT8_C_SUFFIX__
|
|
#define __INT16_C_SUFFIX__
|
|
#define __INT32_C_SUFFIX__
|
|
#define __INT64_C_SUFFIX__ LL
|
|
|
|
#define __UINT8_C_SUFFIX__
|
|
#define __UINT16_C_SUFFIX__
|
|
#define __UINT32_C_SUFFIX__
|
|
#define __UINT64_C_SUFFIX__ ULL
|
|
|
|
#define __INTMAX_C_SUFFIX__ LL
|
|
#define __UINTMAX_C_SUFFIX__ ULL
|
|
|
|
#endif
|
|
|
|
#include <sys/common_int_const.h> |