Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – planix.SVN – Blame – /os/branches/feature-vt/sys/include/ape/ar.h – Rev 2

Subversion Repositories planix.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
#ifndef __AR_H
2
#define __AR_H
3
#ifndef _RESEARCH_SOURCE
4
   This header file is not defined in ANSI or POSIX
5
#endif
6
 
7
#define	ARMAG	"!<arch>\n"
8
#define	SARMAG	8
9
 
10
#define	ARFMAG	"`\n"
11
 
12
struct	ar_hdr
13
{
14
	char	ar_name[16];
15
	char	ar_date[12];
16
	char	ar_uid[6];
17
	char	ar_gid[6];
18
	char	ar_mode[8];
19
	char	ar_size[10];
20
	char	ar_fmag[2];
21
};
22
#define	SAR_HDR	60
23
 
24
#endif