security/nss/lib/ckfw/nssmkey/ckmkver.c

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:a29b4e6d9f68
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4 /* Library identity and versioning */
5
6 #include "nssmkey.h"
7
8 #if defined(DEBUG)
9 #define _DEBUG_STRING " (debug)"
10 #else
11 #define _DEBUG_STRING ""
12 #endif
13
14 /*
15 * Version information for the 'ident' and 'what commands
16 *
17 * NOTE: the first component of the concatenated rcsid string
18 * must not end in a '$' to prevent rcs keyword substitution.
19 */
20 const char __nss_ckmk_rcsid[] = "$Header: NSS Access to the MAC OS X Key Ring "
21 NSS_CKMK_LIBRARY_VERSION _DEBUG_STRING
22 " " __DATE__ " " __TIME__ " $";
23 const char __nss_ckmk_sccsid[] = "@(#)NSS Access to the MAC OS X Key Ring "
24 NSS_CKMK_LIBRARY_VERSION _DEBUG_STRING
25 " " __DATE__ " " __TIME__;

mercurial