xref: /csrg-svn/include/ranlib.h (revision 61068)
146010Sbostic /*-
2*61068Sbostic  * Copyright (c) 1990, 1993
3*61068Sbostic  *	The Regents of the University of California.  All rights reserved.
446010Sbostic  *
546010Sbostic  * %sccs.include.redist.c%
646010Sbostic  *
7*61068Sbostic  *	@(#)ranlib.h	8.1 (Berkeley) 06/02/93
846010Sbostic  */
912191Ssam 
1047777Sbostic #ifndef _RANLIB_H_
1147777Sbostic #define	_RANLIB_H_
1247777Sbostic 
1346010Sbostic #define	RANLIBMAG	"__.SYMDEF"	/* archive file name */
1446010Sbostic #define	RANLIBSKEW	3		/* creation time offset */
1530826Sbostic 
1646010Sbostic struct ranlib {
1712191Ssam 	union {
1854080Sbostic 		long ran_strx;		/* string table index */
1946010Sbostic 		char *ran_name;		/* in memory symbol name */
2012191Ssam 	} ran_un;
2154080Sbostic 	long ran_off;			/* archive file offset */
2212191Ssam };
2347777Sbostic 
2447777Sbostic #endif /* !_RANLIB_H_ */
25