Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/nathanw_sa]: src/sys/arch Add definitions of C99 integer constant macros.



details:   https://anonhg.NetBSD.org/src/rev/4299e55a2c3d
branches:  nathanw_sa
changeset: 504627:4299e55a2c3d
user:      kleink <kleink%NetBSD.org@localhost>
date:      Sat Apr 14 22:38:34 2001 +0000

description:
Add definitions of C99 integer constant macros.

diffstat:

 sys/arch/alpha/include/int_const.h     |  63 ++++++++++++++++++++++++++++
 sys/arch/amiga/include/int_const.h     |   3 +
 sys/arch/arc/include/int_const.h       |   3 +
 sys/arch/arm/include/int_const.h       |  63 ++++++++++++++++++++++++++++
 sys/arch/atari/include/int_const.h     |   3 +
 sys/arch/bebox/include/int_const.h     |   3 +
 sys/arch/cobalt/include/int_const.h    |   3 +
 sys/arch/dreamcast/include/int_const.h |   3 +
 sys/arch/evbsh3/include/int_const.h    |   3 +
 sys/arch/hp300/include/int_const.h     |   3 +
 sys/arch/hpcarm/include/int_const.h    |   3 +
 sys/arch/hpcmips/include/int_const.h   |   3 +
 sys/arch/hpcsh/include/int_const.h     |   3 +
 sys/arch/luna68k/include/int_const.h   |   3 +
 sys/arch/m68k/include/int_const.h      |  63 ++++++++++++++++++++++++++++
 sys/arch/mac68k/include/int_const.h    |   3 +
 sys/arch/macppc/include/int_const.h    |   3 +
 sys/arch/mipsco/include/int_const.h    |   3 +
 sys/arch/mmeye/include/int_const.h     |   3 +
 sys/arch/mvme68k/include/int_const.h   |   3 +
 sys/arch/news68k/include/int_const.h   |   3 +
 sys/arch/newsmips/include/int_const.h  |   3 +
 sys/arch/next68k/include/int_const.h   |   3 +
 sys/arch/ofppc/include/int_const.h     |   3 +
 sys/arch/pmax/include/int_const.h      |   3 +
 sys/arch/prep/include/int_const.h      |   3 +
 sys/arch/sandpoint/include/int_const.h |   3 +
 sys/arch/sgimips/include/int_const.h   |   3 +
 sys/arch/sparc/include/int_const.h     |  76 ++++++++++++++++++++++++++++++++++
 sys/arch/sun2/include/int_const.h      |   3 +
 sys/arch/sun3/include/int_const.h      |   3 +
 sys/arch/vax/include/int_const.h       |  63 ++++++++++++++++++++++++++++
 sys/arch/x68k/include/int_const.h      |   3 +
 33 files changed, 412 insertions(+), 0 deletions(-)

diffs (truncated from 544 to 300 lines):

diff -r 132479847898 -r 4299e55a2c3d sys/arch/alpha/include/int_const.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/arch/alpha/include/int_const.h        Sat Apr 14 22:38:34 2001 +0000
@@ -0,0 +1,63 @@
+/*     $NetBSD: int_const.h,v 1.1.8.2 2001/04/14 22:38:34 kleink Exp $ */
+
+/*-
+ * Copyright (c) 2001 The NetBSD Foundation, Inc.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to The NetBSD Foundation
+ * by Klaus Klein.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ *    must display the following acknowledgement:
+ *        This product includes software developed by the NetBSD
+ *        Foundation, Inc. and its contributors.
+ * 4. Neither the name of The NetBSD Foundation nor the names of its
+ *    contributors may be used to endorse or promote products derived
+ *    from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#ifndef _ALPHA_INT_CONST_H_
+#define _ALPHA_INT_CONST_H_
+
+/*
+ * 7.18.4 Macros for integer constants
+ */
+
+/* 7.18.4.1 Macros for minimum-width integer constants */
+
+#define        INT8_C(c)       c
+#define        INT16_C(c)      c
+#define        INT32_C(c)      c
+#define        INT64_C(c)      c ## L
+
+#define        UINT8_C(c)      c ## U
+#define        UINT16_C(c)     c ## U
+#define        UINT32_C(c)     c ## U
+#define        UINT64_C(c)     c ## UL
+
+/* 7.18.4.2 Macros for greatest-width integer constants */
+
+#define        INTMAX_C(c)     c ## L
+#define        UINTMAX_C(c)    c ## UL
+
+#endif /* !_ALPHA_INT_CONST_H_ */
diff -r 132479847898 -r 4299e55a2c3d sys/arch/amiga/include/int_const.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/arch/amiga/include/int_const.h        Sat Apr 14 22:38:34 2001 +0000
@@ -0,0 +1,3 @@
+/*     $NetBSD: int_const.h,v 1.1.12.2 2001/04/14 22:38:35 kleink Exp $        */
+
+#include <m68k/int_const.h>
diff -r 132479847898 -r 4299e55a2c3d sys/arch/arc/include/int_const.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/arch/arc/include/int_const.h  Sat Apr 14 22:38:34 2001 +0000
@@ -0,0 +1,3 @@
+/*     $NetBSD: int_const.h,v 1.1.12.2 2001/04/14 22:38:35 kleink Exp $        */
+
+#include <mips/int_const.h>
diff -r 132479847898 -r 4299e55a2c3d sys/arch/arm/include/int_const.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/arch/arm/include/int_const.h  Sat Apr 14 22:38:34 2001 +0000
@@ -0,0 +1,63 @@
+/*     $NetBSD: int_const.h,v 1.1.12.2 2001/04/14 22:38:36 kleink Exp $        */
+
+/*-
+ * Copyright (c) 2001 The NetBSD Foundation, Inc.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to The NetBSD Foundation
+ * by Klaus Klein.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ *    must display the following acknowledgement:
+ *        This product includes software developed by the NetBSD
+ *        Foundation, Inc. and its contributors.
+ * 4. Neither the name of The NetBSD Foundation nor the names of its
+ *    contributors may be used to endorse or promote products derived
+ *    from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#ifndef _ARM_INT_CONST_H_
+#define _ARM_INT_CONST_H_
+
+/*
+ * 7.18.4 Macros for integer constants
+ */
+
+/* 7.18.4.1 Macros for minimum-width integer constants */
+
+#define        INT8_C(c)       c
+#define        INT16_C(c)      c
+#define        INT32_C(c)      c
+#define        INT64_C(c)      c ## LL
+
+#define        UINT8_C(c)      c ## U
+#define        UINT16_C(c)     c ## U
+#define        UINT32_C(c)     c ## U
+#define        UINT64_C(c)     c ## ULL
+
+/* 7.18.4.2 Macros for greatest-width integer constants */
+
+#define        INTMAX_C(c)     c ## LL
+#define        UINTMAX_C(c)    c ## ULL
+
+#endif /* !_ARM_INT_CONST_H_ */
diff -r 132479847898 -r 4299e55a2c3d sys/arch/atari/include/int_const.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/arch/atari/include/int_const.h        Sat Apr 14 22:38:34 2001 +0000
@@ -0,0 +1,3 @@
+/*     $NetBSD: int_const.h,v 1.1.12.2 2001/04/14 22:38:36 kleink Exp $        */
+
+#include <m68k/int_const.h>
diff -r 132479847898 -r 4299e55a2c3d sys/arch/bebox/include/int_const.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/arch/bebox/include/int_const.h        Sat Apr 14 22:38:34 2001 +0000
@@ -0,0 +1,3 @@
+/*     $NetBSD: int_const.h,v 1.1.12.2 2001/04/14 22:38:36 kleink Exp $        */
+
+#include <powerpc/int_const.h>
diff -r 132479847898 -r 4299e55a2c3d sys/arch/cobalt/include/int_const.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/arch/cobalt/include/int_const.h       Sat Apr 14 22:38:34 2001 +0000
@@ -0,0 +1,3 @@
+/*     $NetBSD: int_const.h,v 1.1.12.2 2001/04/14 22:38:37 kleink Exp $        */
+
+#include <mips/int_const.h>
diff -r 132479847898 -r 4299e55a2c3d sys/arch/dreamcast/include/int_const.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/arch/dreamcast/include/int_const.h    Sat Apr 14 22:38:34 2001 +0000
@@ -0,0 +1,3 @@
+/*     $NetBSD: int_const.h,v 1.1.22.2 2001/04/14 22:38:37 kleink Exp $        */
+
+#include <sh3/int_const.h>
diff -r 132479847898 -r 4299e55a2c3d sys/arch/evbsh3/include/int_const.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/arch/evbsh3/include/int_const.h       Sat Apr 14 22:38:34 2001 +0000
@@ -0,0 +1,3 @@
+/*     $NetBSD: int_const.h,v 1.1.22.2 2001/04/14 22:38:38 kleink Exp $        */
+
+#include <sh3/int_const.h>
diff -r 132479847898 -r 4299e55a2c3d sys/arch/hp300/include/int_const.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/arch/hp300/include/int_const.h        Sat Apr 14 22:38:34 2001 +0000
@@ -0,0 +1,3 @@
+/*     $NetBSD: int_const.h,v 1.1.12.2 2001/04/14 22:38:38 kleink Exp $        */
+
+#include <m68k/int_const.h>
diff -r 132479847898 -r 4299e55a2c3d sys/arch/hpcarm/include/int_const.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/arch/hpcarm/include/int_const.h       Sat Apr 14 22:38:34 2001 +0000
@@ -0,0 +1,3 @@
+/*     $NetBSD: int_const.h,v 1.1.12.2 2001/04/14 22:38:38 kleink Exp $        */
+
+#include <arm/int_const.h>
diff -r 132479847898 -r 4299e55a2c3d sys/arch/hpcmips/include/int_const.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/arch/hpcmips/include/int_const.h      Sat Apr 14 22:38:34 2001 +0000
@@ -0,0 +1,3 @@
+/*     $NetBSD: int_const.h,v 1.1.12.2 2001/04/14 22:38:38 kleink Exp $        */
+
+#include <mips/int_const.h>
diff -r 132479847898 -r 4299e55a2c3d sys/arch/hpcsh/include/int_const.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/arch/hpcsh/include/int_const.h        Sat Apr 14 22:38:34 2001 +0000
@@ -0,0 +1,3 @@
+/*     $NetBSD: int_const.h,v 1.1.22.2 2001/04/14 22:38:38 kleink Exp $        */
+
+#include <sh3/int_const.h>
diff -r 132479847898 -r 4299e55a2c3d sys/arch/luna68k/include/int_const.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/arch/luna68k/include/int_const.h      Sat Apr 14 22:38:34 2001 +0000
@@ -0,0 +1,3 @@
+/*     $NetBSD: int_const.h,v 1.1.12.2 2001/04/14 22:38:39 kleink Exp $        */
+
+#include <m68k/int_const.h>
diff -r 132479847898 -r 4299e55a2c3d sys/arch/m68k/include/int_const.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/arch/m68k/include/int_const.h Sat Apr 14 22:38:34 2001 +0000
@@ -0,0 +1,63 @@
+/*     $NetBSD: int_const.h,v 1.1.12.2 2001/04/14 22:38:39 kleink Exp $        */
+
+/*-
+ * Copyright (c) 2001 The NetBSD Foundation, Inc.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to The NetBSD Foundation
+ * by Klaus Klein.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ *    must display the following acknowledgement:
+ *        This product includes software developed by the NetBSD
+ *        Foundation, Inc. and its contributors.
+ * 4. Neither the name of The NetBSD Foundation nor the names of its
+ *    contributors may be used to endorse or promote products derived
+ *    from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#ifndef _M68K_INT_CONST_H_
+#define _M68K_INT_CONST_H_
+
+/*
+ * 7.18.4 Macros for integer constants
+ */
+
+/* 7.18.4.1 Macros for minimum-width integer constants */
+
+#define        INT8_C(c)       c
+#define        INT16_C(c)      c
+#define        INT32_C(c)      c
+#define        INT64_C(c)      c ## LL
+
+#define        UINT8_C(c)      c ## U
+#define        UINT16_C(c)     c ## U
+#define        UINT32_C(c)     c ## U
+#define        UINT64_C(c)     c ## ULL
+
+/* 7.18.4.2 Macros for greatest-width integer constants */
+
+#define        INTMAX_C(c)     c ## LL
+#define        UINTMAX_C(c)    c ## ULL
+
+#endif /* !_M68K_INT_CONST_H_ */
diff -r 132479847898 -r 4299e55a2c3d sys/arch/mac68k/include/int_const.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/arch/mac68k/include/int_const.h       Sat Apr 14 22:38:34 2001 +0000
@@ -0,0 +1,3 @@
+/*     $NetBSD: int_const.h,v 1.1.12.2 2001/04/14 22:38:39 kleink Exp $        */
+
+#include <m68k/int_const.h>
diff -r 132479847898 -r 4299e55a2c3d sys/arch/macppc/include/int_const.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/arch/macppc/include/int_const.h       Sat Apr 14 22:38:34 2001 +0000
@@ -0,0 +1,3 @@
+/*     $NetBSD: int_const.h,v 1.1.12.2 2001/04/14 22:38:40 kleink Exp $        */
+
+#include <powerpc/int_const.h>
diff -r 132479847898 -r 4299e55a2c3d sys/arch/mipsco/include/int_const.h



Home | Main Index | Thread Index | Old Index