date and time created 80/10/09 12:40:32 by bill
authorBill Joy <bill@ucbvax.Berkeley.EDU>
Fri, 10 Oct 1980 04:40:32 +0000 (20:40 -0800)
committerBill Joy <bill@ucbvax.Berkeley.EDU>
Fri, 10 Oct 1980 04:40:32 +0000 (20:40 -0800)
SCCS-vsn: bin/csh/dir.h 4.1

usr/src/bin/csh/dir.h [new file with mode: 0644]

diff --git a/usr/src/bin/csh/dir.h b/usr/src/bin/csh/dir.h
new file mode 100644 (file)
index 0000000..444e1e5
--- /dev/null
@@ -0,0 +1,12 @@
+/* dir.h 4.1 %G% */
+
+/*
+ * Structure for entries in directory stack.
+ */
+struct directory       {
+       struct  directory *di_next;     /* next in loop */
+       struct  directory *di_prev;     /* prev in loop */
+       unsigned short *di_count;       /* refcount of processes */
+       char    *di_name;               /* actual name */
+};
+struct directory *dcwd;                /* the one we are in now */