diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-04-12 04:48:18 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-04-12 04:48:18 +0000 |
commit | 359628006351ee344a71819ff445d22163f341d8 (patch) | |
tree | f812aed7fea66de1b0187bf9ff71d352316bb611 /nt/inc/sys | |
parent | 61fac91166ace2b66be0506d906e3a8f3e79f62a (diff) | |
download | emacs-359628006351ee344a71819ff445d22163f341d8.tar.gz |
Initial revision
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_ */
|