Source-Changes-HG archive

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

[src/trunk]: src/games/sail Use __c99inline from sys/cdefs.h



details:   https://anonhg.NetBSD.org/src/rev/0f6f96cd6ea1
branches:  trunk
changeset: 759412:0f6f96cd6ea1
user:      joerg <joerg%NetBSD.org@localhost>
date:      Wed Dec 08 17:06:35 2010 +0000

description:
Use __c99inline from sys/cdefs.h

diffstat:

 games/sail/array.h      |   4 +---
 games/sail/inlinedefs.h |  39 ---------------------------------------
 2 files changed, 1 insertions(+), 42 deletions(-)

diffs (64 lines):

diff -r a8b2f4442377 -r 0f6f96cd6ea1 games/sail/array.h
--- a/games/sail/array.h        Wed Dec 08 16:38:52 2010 +0000
+++ b/games/sail/array.h        Wed Dec 08 17:06:35 2010 +0000
@@ -30,8 +30,6 @@
 #ifndef ARRAY_H
 #define ARRAY_H
 
-#include "inlinedefs.h"
-
 #define ARRAYS_CHECKED
 
 #ifdef ARRAYS_CHECKED
@@ -65,7 +63,7 @@
 // inlining for base operations
 
 #ifndef ARRAYINLINE
-#define ARRAYINLINE INLINE
+#define ARRAYINLINE __c99inline
 #endif
 
 ARRAYINLINE unsigned
diff -r a8b2f4442377 -r 0f6f96cd6ea1 games/sail/inlinedefs.h
--- a/games/sail/inlinedefs.h   Wed Dec 08 16:38:52 2010 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,39 +0,0 @@
-/*-
- * Copyright (c) 2009 The NetBSD Foundation, Inc.
- * All rights reserved.
- *
- * This code is derived from software contributed to The NetBSD Foundation
- * by David A. Holland.
- *
- * 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.
- *
- * 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.
- */
-
-#if defined(__GNUC__) && !defined(__GNUC_STDC_INLINE__)
-/* gcc's non-C99 inline semantics */
-#define INLINE extern inline
-#elif defined(__STDC__) && __STDC_VERSION__ >= 199901L
-/* C99 */
-#define INLINE inline
-#else
-/* something else; static inline is safest */
-#define INLINE static inline
-#endif



Home | Main Index | Thread Index | Old Index