From f2c6dbe2442027ed8fe0fa869918e41f495534d8 Mon Sep 17 00:00:00 2001 From: midipix Date: Sat, 14 Jul 2018 22:51:22 -0400 Subject: move inclusion of linux headers for kd.h, soundcard.h, vt.h to bits maintainer's note: while musl does not use the linux kernel headers, it does provide these three sys/* headers which do nothing but include the corresponding linux/* headers, since the sys/* versions are the ones documented for application use (and they arguably provide interfaces that are not linux-specific but common to other unices). these headers should probably not be provided by libc (rather by a separate package), but as long as they are, use the bits header framework as an aid to out-of-tree ports of musl for non-linux systems that want to implement them in some other way. --- arch/generic/bits/kd.h | 1 + arch/generic/bits/soundcard.h | 1 + arch/generic/bits/vt.h | 1 + 3 files changed, 3 insertions(+) create mode 100644 arch/generic/bits/kd.h create mode 100644 arch/generic/bits/soundcard.h create mode 100644 arch/generic/bits/vt.h (limited to 'arch') diff --git a/arch/generic/bits/kd.h b/arch/generic/bits/kd.h new file mode 100644 index 00000000..33b873f4 --- /dev/null +++ b/arch/generic/bits/kd.h @@ -0,0 +1 @@ +#include diff --git a/arch/generic/bits/soundcard.h b/arch/generic/bits/soundcard.h new file mode 100644 index 00000000..fade986f --- /dev/null +++ b/arch/generic/bits/soundcard.h @@ -0,0 +1 @@ +#include diff --git a/arch/generic/bits/vt.h b/arch/generic/bits/vt.h new file mode 100644 index 00000000..834abfbc --- /dev/null +++ b/arch/generic/bits/vt.h @@ -0,0 +1 @@ +#include -- cgit v1.2.1