symbolic links take on user ownership of their containing directory
[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 *
3b5e37e2 7 * @(#)ranlib.h 5.3 (Berkeley) %G%
6999d532 8 */
d93c729e 9
d2b7358e
KB
10#ifndef _RANLIB_H_
11#define _RANLIB_H_
12
6999d532
KB
13#define RANLIBMAG "__.SYMDEF" /* archive file name */
14#define RANLIBSKEW 3 /* creation time offset */
11f38134 15
6999d532 16struct ranlib {
11f38134 17 union {
3b5e37e2 18 long ran_strx; /* string table index */
6999d532 19 char *ran_name; /* in memory symbol name */
11f38134 20 } ran_un;
3b5e37e2 21 long ran_off; /* archive file offset */
11f38134 22};
d2b7358e
KB
23
24#endif /* !_RANLIB_H_ */