View | Details | Raw Unified | Return to bug 38931
Collapse All | Expand All

(-)strfile.c (-4 / +3 lines)
Lines 147-159 Link Here
147
 *	CHUNKSIZE blocks; if the latter, we just write each pointer,
147
 *	CHUNKSIZE blocks; if the latter, we just write each pointer,
148
 *	and then seek back to the beginning to write in the table.
148
 *	and then seek back to the beginning to write in the table.
149
 */
149
 */
150
int main(ac, av)
150
int
151
int	ac;
151
main(int ac, char *av[])
152
char	**av;
153
{
152
{
154
	char		*sp, dc;
153
	char		*sp, dc;
155
	FILE		*inf, *outf;
154
	FILE		*inf, *outf;
156
	long           last_off, length, pos, *p;
155
	unsigned long	last_off, length, pos, *p;
157
	int		first, cnt;
156
	int		first, cnt;
158
	char		*nsp;
157
	char		*nsp;
159
	STR		*fp;
158
	STR		*fp;

Return to bug 38931