aboutsummaryrefslogtreecommitdiff
path: root/include/mach/macro_help.h
diff options
context:
space:
mode:
authorPasha <pasha@member.fsf.org>2024-02-20 18:49:50 +0000
committerPasha <pasha@member.fsf.org>2024-02-20 18:49:50 +0000
commit5e0b8d508ed51004bd836384293be00950ee62c9 (patch)
treee3f16b1aa8b7177032ce3ec429fbad2b1d92a876 /include/mach/macro_help.h
downloadgnumach-riscv-5e0b8d508ed51004bd836384293be00950ee62c9.tar.gz
gnumach-riscv-5e0b8d508ed51004bd836384293be00950ee62c9.tar.bz2
init gnumach copy
Diffstat (limited to 'include/mach/macro_help.h')
-rw-r--r--include/mach/macro_help.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/mach/macro_help.h b/include/mach/macro_help.h
new file mode 100644
index 0000000..f041e40
--- /dev/null
+++ b/include/mach/macro_help.h
@@ -0,0 +1,18 @@
+/*
+ * Mach Operating System
+ * Copyright (c) 1988 Carnegie-Mellon University
+ * All rights reserved. The CMU software License Agreement specifies
+ * the terms and conditions for use and redistribution.
+ */
+
+#ifndef _MACRO_HELP_H_
+#define _MACRO_HELP_H_ 1
+
+#define MACRO_BEGIN do {
+#define MACRO_END } while (0)
+
+#define MACRO_RETURN if (1) return
+
+#endif /* _MACRO_HELP_H_ */
+
+