-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathscc-version.h
27 lines (22 loc) · 914 Bytes
/
scc-version.h
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
/*
@(#)File: $RCSfile: scc-version.h,v $
@(#)Version: $Revision: 8.3 $
@(#)Last changed: $Date: 2022/05/30 21:00:50 $
@(#)Purpose: Version information for SCC
@(#)Author: J Leffler
@(#)Copyright: (C) JLSS 2022
*/
#ifndef SCC_VERSION_H_INCLUDED
#define SCC_VERSION_H_INCLUDED
#ifdef MAIN_PROGRAM
#ifndef lint
/* Prevent over-aggressive optimizers from eliminating ID string */
extern const char jlss_id_scc_version_h[];
const char jlss_id_scc_version_h[] = "@(#)$Id: scc-version.h,v 8.3 2022/05/30 21:00:50 jonathanleffler Exp $";
#endif /* lint */
#endif /* MAIN_PROGRAM */
static const char version_data[] = "@(#)$Version: 8.0.3 $ ($Datetime: 2022-05-30 20:59:21Z $)";
static const char cmdname_data[] = "@(#)SCC";
static const char * const version_info = &version_data[4];
static const char * const cmdname_info = &cmdname_data[4];
#endif /* SCC_VERSION_H_INCLUDED */