xref: /original-bsd/include/ranlib.h (revision c3e32dec)
1 /*-
2  * Copyright (c) 1990, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)ranlib.h	8.1 (Berkeley) 06/02/93
8  */
9 
10 #ifndef _RANLIB_H_
11 #define	_RANLIB_H_
12 
13 #define	RANLIBMAG	"__.SYMDEF"	/* archive file name */
14 #define	RANLIBSKEW	3		/* creation time offset */
15 
16 struct ranlib {
17 	union {
18 		long ran_strx;		/* string table index */
19 		char *ran_name;		/* in memory symbol name */
20 	} ran_un;
21 	long ran_off;			/* archive file offset */
22 };
23 
24 #endif /* !_RANLIB_H_ */
25