blob: a9d4a46811824fc544414ccf2ecada10313b4649 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#if __GNUC__ >= 3 && __GNUC_MINOR__ >= 4 || __GNUC__ >= 4
#define USED __attribute__ ((used))
#elif defined __GNUC__
#define USED __attribute__ ((unused))
#else
#define USED
#endif
static const char sccsid[] USED = "@(#)cpio.sl 2.9 (gritter) 8/14/09";
/* SLIST */
/*
blast.c: * Sccsid @(#)blast.c 1.2 (gritter) 2/17/04
blast.h: * Sccsid @(#)blast.h 1.2 (gritter) 2/17/04
cpio.c: * Sccsid @(#)cpio.c 1.305 (gritter) 8/14/09
cpio.h: Sccsid @(#)cpio.h 1.29 (gritter) 3/26/07
crc32.c: * Sccsid @(#)crc32.c 1.2 (gritter) 5/29/03
expand.c: Sccsid @(#)expand.c 1.6 (gritter) 12/15/03
explode.c: * Sccsid @(#)explode.c 1.6 (gritter) 9/30/03
flags.c: Sccsid @(#)flags.c 1.6 (gritter) 3/26/07
inflate.c: * Sccsid @(#)inflate.c 1.6 (gritter) 10/13/04
nonpax.c: Sccsid @(#)nonpax.c 1.1 (gritter) 2/24/04
pax.c:static const char sccsid[] USED = "@(#)pax_su3.sl 1.26 (gritter) 6/26/05";
pax.c:static const char sccsid[] USED = "@(#)pax.sl 1.26 (gritter) 6/26/05";
pax.c: Sccsid @(#)pax.c 1.26 (gritter) 6/26/05
unshrink.c: * Sccsid @(#)unshrink.c 1.4 (gritter) 6/18/04
unzip.h: * Sccsid @(#)unzip.h 1.5 (gritter) 7/16/04
*/
|