summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2014-03-17 18:58:17 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2014-03-17 18:58:17 +0000
commit1cf5b24fed31834543928d79827be142554bba49 (patch)
tree144ad0c8b680923b6510c89065ec8c8ffedd020a
parent1d5b31f499c78b901910b637dea9ed548edec5a3 (diff)
Add a dummy librt, to ease porting software from Linux and Solaris.
ok ratchov@, ajacoutot@, millert@, guenther@
-rw-r--r--lib/librt/Makefile6
-rw-r--r--lib/librt/rt.c3
2 files changed, 9 insertions, 0 deletions
diff --git a/lib/librt/Makefile b/lib/librt/Makefile
new file mode 100644
index 00000000000..f7ae8c2523e
--- /dev/null
+++ b/lib/librt/Makefile
@@ -0,0 +1,6 @@
+# $OpenBSD: Makefile,v 1.1 2014/03/17 18:58:16 kettenis Exp $
+
+LIB= rt
+SRCS= rt.c
+
+.include <bsd.lib.mk>
diff --git a/lib/librt/rt.c b/lib/librt/rt.c
new file mode 100644
index 00000000000..c6b114abcaa
--- /dev/null
+++ b/lib/librt/rt.c
@@ -0,0 +1,3 @@
+/*
+ * This page intentionally left blank.
+ */