blob: 68e1550662c24d7533e870735bd2d413d254a62a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- rec.h.orig Fri Jul 11 22:01:27 1997
+++ rec.h Tue Nov 18 16:58:49 2003
@@ -15,7 +15,7 @@
struct map { /* pool cell descriptor */
short busy; /* cell busy */
- short index; /* index in lindex */
+ int index; /* index in lindex */
long time; /* time of last access */
};
@@ -37,7 +37,7 @@
short fd; /* file descriptor */
short bakfd; /* bak file descriptor */
short tfd; /* temp file descriptor */
- short len; /* length of file in lines */
+ int len; /* length of file in lines */
short broken; /* there are broken lines */
} REC;
|