summaryrefslogtreecommitdiff
path: root/sys/arch/pmax/include/cdefs.h
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-09-29 11:36:54 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-09-29 11:36:54 +0000
commit15c8c1e274911de0184fcc6791b41e7540984933 (patch)
tree739ec1e6d56089abbb97c8eaf138852304305050 /sys/arch/pmax/include/cdefs.h
parente3daada1407f62d2b3ee023a41a2537d81ec76b0 (diff)
merge mips back into pmax; by graichen
Diffstat (limited to 'sys/arch/pmax/include/cdefs.h')
-rw-r--r--sys/arch/pmax/include/cdefs.h46
1 files changed, 44 insertions, 2 deletions
diff --git a/sys/arch/pmax/include/cdefs.h b/sys/arch/pmax/include/cdefs.h
index ece6d966740..47499b695ea 100644
--- a/sys/arch/pmax/include/cdefs.h
+++ b/sys/arch/pmax/include/cdefs.h
@@ -1,3 +1,45 @@
-/* $NetBSD: cdefs.h,v 1.5 1996/03/19 04:39:03 jonathan Exp $ */
+/* $NetBSD: cdefs.h,v 1.4 1995/12/15 01:17:04 jonathan Exp $ */
-#include <mips/cdefs.h>
+/*
+ * Copyright (c) 1995 Carnegie-Mellon University.
+ * All rights reserved.
+ *
+ * Author: Chris G. Demetriou
+ *
+ * Permission to use, copy, modify and distribute this software and
+ * its documentation is hereby granted, provided that both the copyright
+ * notice and this permission notice appear in all copies of the
+ * software, derivative works or modified versions, and any portions
+ * thereof, and that both notices appear in supporting documentation.
+ *
+ * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
+ * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
+ * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
+ *
+ * Carnegie Mellon requests users of this software to return to
+ *
+ * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
+ * School of Computer Science
+ * Carnegie Mellon University
+ * Pittsburgh PA 15213-3890
+ *
+ * any improvements or extensions that they make and grant Carnegie the
+ * rights to redistribute these changes.
+ */
+
+#ifndef _MACHINE_CDEFS_H_
+#define _MACHINE_CDEFS_H_
+
+#define _C_LABEL(x) _STRING(x)
+
+#define __indr_references(sym,msg) /* nothing */
+
+#if defined __GNUC__ && defined __STDC__
+#define __warn_references(sym, msg) \
+ static const char __evoke_link_warning_##sym[] \
+ __attribute__ ((section (".gnu.warning." #sym))) = msg;
+#else
+#define __warn_references(sym,msg) /* nothing */
+#endif
+
+#endif /* !_MACHINE_CDEFS_H_ */