diff options
Diffstat (limited to 'nt/inc/sys/param.h')
-rw-r--r-- | nt/inc/sys/param.h | 10 |
1 files changed, 10 insertions, 0 deletions
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_ */
|