summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkettenis <kettenis@openbsd.org>2020-07-11 16:21:29 +0000
committerkettenis <kettenis@openbsd.org>2020-07-11 16:21:29 +0000
commit42ac4c7b1ebba35ee9dc1707a1a9bf1a7fb6848b (patch)
treeca63c4271e71ae85468b60427f372682019d39ba
parentOops. One too many lines deleted, leaving 'buswidth' uninitialized but (diff)
downloadwireguard-openbsd-42ac4c7b1ebba35ee9dc1707a1a9bf1a7fb6848b.tar.xz
wireguard-openbsd-42ac4c7b1ebba35ee9dc1707a1a9bf1a7fb6848b.zip
Add missing usertc.c file.
-rw-r--r--lib/libc/arch/powerpc64/gen/usertc.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/libc/arch/powerpc64/gen/usertc.c b/lib/libc/arch/powerpc64/gen/usertc.c
new file mode 100644
index 00000000000..2ad6f973007
--- /dev/null
+++ b/lib/libc/arch/powerpc64/gen/usertc.c
@@ -0,0 +1,21 @@
+/* $OpenBSD: usertc.c,v 1.1 2020/07/11 16:21:29 kettenis Exp $ */
+/*
+ * Copyright (c) 2020 Paul Irofti <paul@irofti.net>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#include <sys/types.h>
+#include <sys/timetc.h>
+
+int (*const _tc_get_timecount)(struct timekeep *, u_int *) = NULL;