xref: /original-bsd/include/ranlib.h (revision b7cc7b86)
1 /*-
2  * Copyright (c) 1990 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)ranlib.h	5.1 (Berkeley) 01/18/91
8  */
9 
10 #define	RANLIBMAG	"__.SYMDEF"	/* archive file name */
11 #define	RANLIBSKEW	3		/* creation time offset */
12 
13 struct ranlib {
14 	union {
15 		off_t ran_strx;		/* string table index */
16 		char *ran_name;		/* in memory symbol name */
17 	} ran_un;
18 	off_t ran_off;			/* archive file offset */
19 };
20