diff options
-rw-r--r-- | arch/nt32/bits/kd.h | 2 | ||||
-rw-r--r-- | arch/nt32/bits/vt.h | 2 | ||||
-rw-r--r-- | arch/nt64/bits/kd.h | 2 | ||||
-rw-r--r-- | arch/nt64/bits/vt.h | 2 | ||||
-rw-r--r-- | project/os/midipix.mk | 2 |
5 files changed, 10 insertions, 0 deletions
diff --git a/arch/nt32/bits/kd.h b/arch/nt32/bits/kd.h new file mode 100644 index 0000000..8a28950 --- /dev/null +++ b/arch/nt32/bits/kd.h @@ -0,0 +1,2 @@ +#error This target does not provide <sys/kd.h> +#error (and you should not be directly including <bits/kd.h> in the first place...) diff --git a/arch/nt32/bits/vt.h b/arch/nt32/bits/vt.h new file mode 100644 index 0000000..03dd44a --- /dev/null +++ b/arch/nt32/bits/vt.h @@ -0,0 +1,2 @@ +#error This target does not provide <sys/vt.h> +#error (and you should not be directly including <bits/vt.h> in the first place...) diff --git a/arch/nt64/bits/kd.h b/arch/nt64/bits/kd.h new file mode 100644 index 0000000..8a28950 --- /dev/null +++ b/arch/nt64/bits/kd.h @@ -0,0 +1,2 @@ +#error This target does not provide <sys/kd.h> +#error (and you should not be directly including <bits/kd.h> in the first place...) diff --git a/arch/nt64/bits/vt.h b/arch/nt64/bits/vt.h new file mode 100644 index 0000000..03dd44a --- /dev/null +++ b/arch/nt64/bits/vt.h @@ -0,0 +1,2 @@ +#error This target does not provide <sys/vt.h> +#error (and you should not be directly including <bits/vt.h> in the first place...) diff --git a/project/os/midipix.mk b/project/os/midipix.mk index e04f74d..c06b1a0 100644 --- a/project/os/midipix.mk +++ b/project/os/midipix.mk @@ -1,4 +1,6 @@ OS_EXCLUDE_LIBC_HEADERS = \ $(SOURCE_DIR)/include/sys/epoll.h \ + $(SOURCE_DIR)/include/sys/kd.h \ $(SOURCE_DIR)/include/sys/mount.h \ $(SOURCE_DIR)/include/sys/soundcard.h \ + $(SOURCE_DIR)/include/sys/vt.h \ |