/*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. * * %sccs.include.redist.c% * * @(#)ranlib.h 5.1 (Berkeley) 01/18/91 */ #define RANLIBMAG "__.SYMDEF" /* archive file name */ #define RANLIBSKEW 3 /* creation time offset */ struct ranlib { union { off_t ran_strx; /* string table index */ char *ran_name; /* in memory symbol name */ } ran_un; off_t ran_off; /* archive file offset */ };