add prototype for getsubopt(3)
[unix-history] / usr / src / include / ranlib.h
CommitLineData
6999d532
KB
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) %G%
8 */
d93c729e 9
6999d532
KB
10#define RANLIBMAG "__.SYMDEF" /* archive file name */
11#define RANLIBSKEW 3 /* creation time offset */
11f38134 12
6999d532 13struct ranlib {
11f38134 14 union {
6999d532
KB
15 off_t ran_strx; /* string table index */
16 char *ran_name; /* in memory symbol name */
11f38134 17 } ran_un;
6999d532 18 off_t ran_off; /* archive file offset */
11f38134 19};