Module Name: src
Committed By: jmcneill
Date: Fri Oct 12 22:09:04 UTC 2018
Added Files:
src/sys/arch/evbarm/include: cpufunc.h
Log Message:
Add cpufunc.h wrapper
To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/sys/arch/evbarm/include/cpufunc.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Added files:
Index: src/sys/arch/evbarm/include/cpufunc.h
diff -u /dev/null src/sys/arch/evbarm/include/cpufunc.h:1.1
--- /dev/null Fri Oct 12 22:09:04 2018
+++ src/sys/arch/evbarm/include/cpufunc.h Fri Oct 12 22:09:04 2018
@@ -0,0 +1,7 @@
+/* $NetBSD: cpufunc.h,v 1.1 2018/10/12 22:09:04 jmcneill Exp $ */
+
+#ifdef __aarch64__
+#include <aarch64/cpufunc.h>
+#else
+#include <arm/cpufunc.h>
+#endif