summaryrefslogtreecommitdiff
path: root/win32/config_H.vc
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-06-23 10:50:10 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-06-23 10:50:10 +0000
commit066ef5b548575efffe272b7363a2f5050ebd7e2d (patch)
tree09ca6ef3162bdf047c8476dad3f3bb9067b7c150 /win32/config_H.vc
parentcb68f92dafee55e318e6fa14f60158f7b7d20a65 (diff)
downloadperl-066ef5b548575efffe272b7363a2f5050ebd7e2d.tar.gz
more MULTIPLICITY tweaks
p4raw-id: //depot/perl@1206
Diffstat (limited to 'win32/config_H.vc')
-rw-r--r--win32/config_H.vc15
1 files changed, 15 insertions, 0 deletions
diff --git a/win32/config_H.vc b/win32/config_H.vc
index dd293fa76c..81c322e2ae 100644
--- a/win32/config_H.vc
+++ b/win32/config_H.vc
@@ -410,6 +410,14 @@
*/
/*#define HAS_MKFIFO /**/
+/* HAS_MKNOD:
+ * This symbol, if defined, indicates that the mknod routine is
+ * available to create character and block special files. Otherwise,
+ * mknod should be able to do it for you. However, if mknod is there,
+ * mknod might require super-user privileges which mknod will not.
+ */
+/*#define HAS_MKNOD /**/
+
/* HAS_MKTIME:
* This symbol, if defined, indicates that the mktime routine is
* available.
@@ -2007,6 +2015,13 @@
*/
#define Gid_t gid_t /* Type for getgid(), etc... */
+/* Dev_t:
+ * This symbol holds the type used to declare device numbers.
+ * It can be int, long, dev_t, etc... It may be necessary to include
+ * <sys/types.h> to get any typedef'ed information.
+ */
+#define Dev_t dev_t /* <device> type */
+
/* Off_t:
* This symbol holds the type used to declare offsets in the kernel.
* It can be int, long, off_t, etc... It may be necessary to include