diff options
Diffstat (limited to 'nt/inc/sys')
| -rw-r--r-- | nt/inc/sys/dir.h | 5 | ||||
| -rw-r--r-- | nt/inc/sys/file.h | 5 | ||||
| -rw-r--r-- | nt/inc/sys/ioctl.h | 5 | ||||
| -rw-r--r-- | nt/inc/sys/param.h | 10 |
4 files changed, 25 insertions, 0 deletions
diff --git a/nt/inc/sys/dir.h b/nt/inc/sys/dir.h new file mode 100644 index 00000000000..203e27f2fe7 --- /dev/null +++ b/nt/inc/sys/dir.h @@ -0,0 +1,5 @@ +/* + * map sys\dir.h to ..\..\..\src\ndir.h + */ + +#include "..\..\..\src\ndir.h" diff --git a/nt/inc/sys/file.h b/nt/inc/sys/file.h new file mode 100644 index 00000000000..698dc7861c9 --- /dev/null +++ b/nt/inc/sys/file.h @@ -0,0 +1,5 @@ +/*
+ * sys\file.h doesn't exist on NT...rather than including it conditionally
+ * in some of the source files, we just extend the include path so that the
+ * compiler will pick up this empty header instead.
+ */
diff --git a/nt/inc/sys/ioctl.h b/nt/inc/sys/ioctl.h new file mode 100644 index 00000000000..5294e1b5f85 --- /dev/null +++ b/nt/inc/sys/ioctl.h @@ -0,0 +1,5 @@ +/*
+ * sys\ioctl.h doesn't exist on NT...rather than including it conditionally
+ * in many of the source files, we just extend the include path so that the
+ * compiler will pick this up empty header instead.
+ */
diff --git a/nt/inc/sys/param.h b/nt/inc/sys/param.h new file mode 100644 index 00000000000..b7f227405f4 --- /dev/null +++ b/nt/inc/sys/param.h @@ -0,0 +1,10 @@ +#ifndef _PARAM_H_
+#define _PARAM_H_
+
+/*
+ * sys\param.h doesn't exist on NT, so we'll make one.
+ */
+
+#define NBPG 4096
+
+#endif /* _PARAM_H_ */
|
