diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2014-03-17 18:58:17 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2014-03-17 18:58:17 +0000 |
commit | 1cf5b24fed31834543928d79827be142554bba49 (patch) | |
tree | 144ad0c8b680923b6510c89065ec8c8ffedd020a | |
parent | 1d5b31f499c78b901910b637dea9ed548edec5a3 (diff) |
Add a dummy librt, to ease porting software from Linux and Solaris.
ok ratchov@, ajacoutot@, millert@, guenther@
-rw-r--r-- | lib/librt/Makefile | 6 | ||||
-rw-r--r-- | lib/librt/rt.c | 3 |
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. + */ |