cssmData = reinterpret_cast<CssmData *>(outData);
CssmData &pubKeyHash = *cssmData;
- status = CSSM_CSP_CreateSymmetricContext(csp->handle(), publicWrappedKey.KeyHeader.AlgorithmId, CSSM_ALGMODE_NONE, NULL, NULL, NULL, CSSM_PADDING_NONE, NULL, &ccHandle);
+ status = CSSM_CSP_CreateSymmetricContext(csp->handle(), publicWrappedKey.KeyHeader.WrapAlgorithmId, CSSM_ALGMODE_NONE, NULL, NULL, NULL, CSSM_PADDING_NONE, NULL, &ccHandle);
if (status)
CssmError::throwMe(status);
deleteContext = true;
CssmError::throwMe(status);
// Unwrap the the keys
+ CSSM_DATA descriptiveData = {0, NULL};
+
status = CSSM_UnwrapKey(
ccHandle,
NULL,
&publicWrappedKey,
publicWrappedKey.KeyHeader.KeyUsage,
- publicWrappedKey.KeyHeader.KeyAttr,
+ publicWrappedKey.KeyHeader.KeyAttr | CSSM_KEYATTR_PERMANENT,
&pubKeyHash,
&rcc,
&publicCssmKey,
- NULL);
+ &descriptiveData);
+
if (status)
CssmError::throwMe(status);
freePublicKey = true;
-
+
+ if (descriptiveData.Data != NULL)
+ free (descriptiveData.Data);
+
status = CSSM_UnwrapKey(
ccHandle,
NULL,
&privateWrappedKey,
privateWrappedKey.KeyHeader.KeyUsage,
- privateWrappedKey.KeyHeader.KeyAttr,
+ privateWrappedKey.KeyHeader.KeyAttr | CSSM_KEYATTR_PERMANENT,
&pubKeyHash,
&rcc,
&privateCssmKey,
- NULL);
-
+ &descriptiveData);
+
if (status)
CssmError::throwMe(status);
+ if (descriptiveData.Data != NULL)
+ free (descriptiveData.Data);
+
freePrivateKey = true;
// Find the keys we just generated in the DL to get SecKeyRef's to them
OSStatus
SecKeyImportPair(
SecKeychainRef keychainRef,
- const CssmKey *publicCssmKey,
- const CssmKey *privateCssmKey,
+ const CSSM_KEY *publicCssmKey,
+ const CSSM_KEY *privateCssmKey,
SecAccessRef initialAccess,
- SecKeyRef* publicKeyRef,
- SecKeyRef* privateKeyRef)
+ SecKeyRef* publicKey,
+ SecKeyRef* privateKey)
{
BEGIN_SECAPI
privItem);
// Return the generated keys.
- if (publicKeyRef)
- *publicKeyRef = gTypes().keyItem.handle(*pubItem);
- if (privateKeyRef)
- *privateKeyRef = gTypes().keyItem.handle(*privItem);
+ if (publicKey)
+ *publicKey = gTypes().keyItem.handle(*pubItem);
+ if (privateKey)
+ *privateKey = gTypes().keyItem.handle(*privItem);
END_SECAPI
}
_SSLInternalClientRandom
_SSLInternal_PRF
_SSLGetClientCertificateState
+_SecKeyImportPair
\ No newline at end of file
);
buildSettings = {
DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 54.1.5;
+ DYLIB_CURRENT_VERSION = 54.1.7;
FRAMEWORK_SEARCH_PATHS = "\"$(SYSTEM_LIBRARY_DIR)/PrivateFrameworks\"";
HEADER_SEARCH_PATHS = "\"$(BUILT_PRODUCTS_DIR)/BSafe.framework/Headers\" \"$(SYSTEM_LIBRARY_DIR)/PrivateFrameworks/BSafe.framework/Headers\" \"$(SRCROOT)/AppleCSP\" \"$(SRCROOT)/AppleCSP/open_ssl\"";
LIBRARY_STYLE = STATIC;
);
buildSettings = {
DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 54.1.5;
+ DYLIB_CURRENT_VERSION = 54.1.7;
LIBRARY_STYLE = STATIC;
OPTIMIZATION_CFLAGS = "-Os -DNDEBUG";
OTHER_CFLAGS = "-DVDADER_RULES";
);
buildSettings = {
DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 54.1.5;
+ DYLIB_CURRENT_VERSION = 54.1.7;
LIBRARY_STYLE = STATIC;
OPTIMIZATION_CFLAGS = "-Os -DNDEBUG";
OTHER_CFLAGS = "";
);
buildSettings = {
DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 54.1.5;
+ DYLIB_CURRENT_VERSION = 54.1.7;
LIBRARY_STYLE = STATIC;
OPTIMIZATION_CFLAGS = "-Os -DNDEBUG";
OTHER_CFLAGS = "-DVDADER_RULES";
);
buildSettings = {
DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 54.1.5;
+ DYLIB_CURRENT_VERSION = 54.1.7;
LIBRARY_STYLE = STATIC;
OPTIMIZATION_CFLAGS = "-Os -DNDEBUG";
OTHER_CFLAGS = "-DVDADER_RULES";
01FA8900FFF2BC5611CD283A,
);
buildSettings = {
- CURRENT_PROJECT_VERSION = 54.1.5;
+ CURRENT_PROJECT_VERSION = 54.1.7;
INSTALL_PATH = "$(SYSTEM_CORE_SERVICES_DIR)";
LIBRARY_SEARCH_PATHS = "";
OPTIMIZATION_CFLAGS = "-Os -DNDEBUG";
01FA890AFFF2BCA811CD283A,
);
buildSettings = {
- CURRENT_PROJECT_VERSION = 54.1.5;
+ CURRENT_PROJECT_VERSION = 54.1.7;
INSTALL_PATH = "$(SYSTEM_CORE_SERVICES_DIR)";
LIBRARY_SEARCH_PATHS = "";
OPTIMIZATION_CFLAGS = "-Os -DNDEBUG";
);
buildSettings = {
DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 54.1.5;
+ DYLIB_CURRENT_VERSION = 54.1.7;
INSTALL_PATH = /usr/local/lib;
LIBRARY_STYLE = STATIC;
OPTIMIZATION_CFLAGS = "-Os -DNDEBUG";
F5DDE3AE00B3358F01CD283A,
);
buildSettings = {
- CURRENT_PROJECT_VERSION = 54.1.5;
+ CURRENT_PROJECT_VERSION = 54.1.7;
DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 54.1.5;
+ DYLIB_CURRENT_VERSION = 54.1.7;
FRAMEWORK_SEARCH_PATHS = "";
FRAMEWORK_VERSION = A;
HEADER_SEARCH_PATHS = "\"$(SRCROOT)\" \"$(BUILT_PRODUCTS_DIR)/derived_src\"";
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
- <string>1.1.3</string>
+ <string>1.1.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
- <string>54.1.5</string>
+ <string>54.1.7</string>
</dict>
</plist>
";
);
buildSettings = {
DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 54.1.5;
+ DYLIB_CURRENT_VERSION = 54.1.7;
HEADER_SEARCH_PATHS = "\"$(BUILT_PRODUCTS_DIR)/include\"";
INSTALL_PATH = /usr/local/lib;
LIBRARY_STYLE = STATIC;
325EAA2800D6B08805CD296C,
);
buildSettings = {
- CURRENT_PROJECT_VERSION = 54.1.5;
+ CURRENT_PROJECT_VERSION = 54.1.7;
LIBRARY_SEARCH_PATHS = "";
OPTIMIZATION_CFLAGS = "-Os -DNDEBUG";
OTHER_CFLAGS = "";
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
- <string>1.1.3</string>
+ <string>1.1.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
- <string>54.1.5</string>
+ <string>54.1.7</string>
</dict>
</plist>
";
3290382100D6BA5905CD296C,
);
buildSettings = {
- CURRENT_PROJECT_VERSION = 54.1.5;
+ CURRENT_PROJECT_VERSION = 54.1.7;
LIBRARY_SEARCH_PATHS = "";
OPTIMIZATION_CFLAGS = "-Os -DNDEBUG";
OTHER_CFLAGS = "";
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
- <string>1.1.3</string>
+ <string>1.1.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
- <string>54.1.5</string>
+ <string>54.1.7</string>
</dict>
</plist>
";
3290382700D6BA5905CD296C,
);
buildSettings = {
- CURRENT_PROJECT_VERSION = 54.1.5;
+ CURRENT_PROJECT_VERSION = 54.1.7;
LIBRARY_SEARCH_PATHS = "";
OPTIMIZATION_CFLAGS = "-Os -DNDEBUG";
OTHER_CFLAGS = "";
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
- <string>1.1.3</string>
+ <string>1.1.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
- <string>54.1.5</string>
+ <string>54.1.7</string>
</dict>
</plist>
";
3290382D00D6BA5905CD296C,
);
buildSettings = {
- CURRENT_PROJECT_VERSION = 54.1.5;
+ CURRENT_PROJECT_VERSION = 54.1.7;
LIBRARY_SEARCH_PATHS = "";
OPTIMIZATION_CFLAGS = "-Os -DNDEBUG";
OTHER_CFLAGS = "";
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
- <string>1.1.3</string>
+ <string>1.1.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
- <string>54.1.5</string>
+ <string>54.1.7</string>
</dict>
</plist>
";
3290383300D6BA5905CD296C,
);
buildSettings = {
- CURRENT_PROJECT_VERSION = 54.1.5;
+ CURRENT_PROJECT_VERSION = 54.1.7;
LIBRARY_SEARCH_PATHS = "";
OPTIMIZATION_CFLAGS = "-Os -DNDEBUG";
OTHER_LDFLAGS = "-bundle -undefined error";
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
- <string>1.1.3</string>
+ <string>1.1.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
- <string>54.1.5</string>
+ <string>54.1.7</string>
</dict>
</plist>
";
--
-- MS 92
--
--- $Header: /cvs/Darwin/src/live/Security/SecurityASN1/asn/asn-useful.asn1,v 1.1.1.1 2001/05/18 23:13:59 mb Exp $
+-- $Header: /cvs/root/Security/SecurityASN1/asn/Attic/asn-useful.asn1,v 1.1.1.1 2001/05/18 23:13:59 mb Exp $
-- $Log: asn-useful.asn1,v $
-- Revision 1.1.1.1 2001/05/18 23:13:59 mb
-- Move from private repository to open source repository
i486/Linux, Alpha OSF/1 and many other machines.
#-------------------------------------------------------------------------------
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/README,v 1.1.1.1 2001/05/18 23:14:04 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/Attic/README,v 1.1.1.1 2001/05/18 23:14:04 mb Exp $
# $Log: README,v $
# Revision 1.1.1.1 2001/05/18 23:14:04 mb
# Move from private repository to open source repository
/*
* file: acconfig.h
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/acconfig.h,v 1.1.1.1 2001/05/18 23:14:04 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/Attic/acconfig.h,v 1.1.1.1 2001/05/18 23:14:04 mb Exp $
* $Log: acconfig.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:04 mb
* Move from private repository to open source repository
--
-- this file is used in ../c{,++}-examples/any/
--
--- $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/asn1specs/any.asn1,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
+-- $Header: /cvs/root/Security/SecuritySNACCRuntime/asn1specs/Attic/any.asn1,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
-- $Log: any.asn1,v $
-- Revision 1.1.1.1 2001/05/18 23:14:05 mb
-- Move from private repository to open source repository
--
-- MS 92
--
--- $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/asn1specs/asn-useful.asn1,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
+-- $Header: /cvs/root/Security/SecuritySNACCRuntime/asn1specs/Attic/asn-useful.asn1,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
-- $Log: asn-useful.asn1,v $
-- Revision 1.1.1.1 2001/05/18 23:14:05 mb
-- Move from private repository to open source repository
-- Mike Sample 91/08/29
-- Modifed 92/05 MS
--
--- $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/asn1specs/asn1module.asn1,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
+-- $Header: /cvs/root/Security/SecuritySNACCRuntime/asn1specs/Attic/asn1module.asn1,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
-- $Log: asn1module.asn1,v $
-- Revision 1.1.1.1 2001/05/18 23:14:05 mb
-- Move from private repository to open source repository
--
-- Mike Sample 92/07
--
--- $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/asn1specs/err-test.asn1,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
+-- $Header: /cvs/root/Security/SecuritySNACCRuntime/asn1specs/Attic/err-test.asn1,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
-- $Log: err-test.asn1,v $
-- Revision 1.1.1.1 2001/05/18 23:14:05 mb
-- Move from private repository to open source repository
--
-- MS 92
--
--- $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/asn1specs/ex1.asn1,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
+-- $Header: /cvs/root/Security/SecuritySNACCRuntime/asn1specs/Attic/ex1.asn1,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
-- $Log: ex1.asn1,v $
-- Revision 1.1.1.1 2001/05/18 23:14:05 mb
-- Move from private repository to open source repository
--
-- this file is used in ../c{,++}-examples/simple/
--
--- $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/asn1specs/p-rec.asn1,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
+-- $Header: /cvs/root/Security/SecuritySNACCRuntime/asn1specs/Attic/p-rec.asn1,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
-- $Log: p-rec.asn1,v $
-- Revision 1.1.1.1 2001/05/18 23:14:05 mb
-- Move from private repository to open source repository
--
-- this file is used in ../c{,++}-examples/snmp/
--
--- $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/asn1specs/rfc1155-smi.asn1,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
+-- $Header: /cvs/root/Security/SecuritySNACCRuntime/asn1specs/Attic/rfc1155-smi.asn1,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
-- $Log: rfc1155-smi.asn1,v $
-- Revision 1.1.1.1 2001/05/18 23:14:05 mb
-- Move from private repository to open source repository
--
-- this file is used in ../c{,++}-examples/snmp/
--
--- $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/asn1specs/rfc1157-snmp.asn1,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
+-- $Header: /cvs/root/Security/SecuritySNACCRuntime/asn1specs/Attic/rfc1157-snmp.asn1,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
-- $Log: rfc1157-snmp.asn1,v $
-- Revision 1.1.1.1 2001/05/18 23:14:05 mb
-- Move from private repository to open source repository
--
-- this file is used in ../c{,++}-examples/snmp/
--
--- $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/asn1specs/rfc1213-mib2.asn1,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
+-- $Header: /cvs/root/Security/SecuritySNACCRuntime/asn1specs/Attic/rfc1213-mib2.asn1,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
-- $Log: rfc1213-mib2.asn1,v $
-- Revision 1.1.1.1 2001/05/18 23:14:05 mb
-- Move from private repository to open source repository
-- Mike Sample, April 11, 1992
-- Mods MS Feb 7/93
--
--- $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/asn1specs/tbl.asn1,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
+-- $Header: /cvs/root/Security/SecuritySNACCRuntime/asn1specs/Attic/tbl.asn1,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
-- $Log: tbl.asn1,v $
-- Revision 1.1.1.1 2001/05/18 23:14:05 mb
-- Move from private repository to open source repository
explicitly initialized.
#-------------------------------------------------------------------------------
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-examples/any/README,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-examples/any/Attic/README,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
# $Log: README,v $
# Revision 1.1.1.1 2001/05/18 23:14:05 mb
# Move from private repository to open source repository
// AUTHOR: Mike Sample
// DATE: 92
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-examples/any/example.C,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-examples/any/Attic/example.C,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
// $Log: example.C,v $
// Revision 1.1.1.1 2001/05/18 23:14:05 mb
// Move from private repository to open source repository
//
// MS 92
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-examples/any/genber.C,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-examples/any/Attic/genber.C,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
// $Log: genber.C,v $
// Revision 1.1.1.1 2001/05/18 23:14:05 mb
// Move from private repository to open source repository
#
# MS 92
#
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-examples/any/makefile,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-examples/any/Attic/makefile,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
# $Log: makefile,v $
# Revision 1.1.1.1 2001/05/18 23:14:05 mb
# Move from private repository to open source repository
.../c++_lib/inc/asn_len.h to check a global flag.
#-------------------------------------------------------------------------------
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-examples/simple/README,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-examples/simple/Attic/README,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
# $Log: README,v $
# Revision 1.1.1.1 2001/05/18 23:14:05 mb
# Move from private repository to open source repository
// AUTHOR: Mike Sample
// DATE: Aug 92
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-examples/simple/example.C,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-examples/simple/Attic/example.C,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
// $Log: example.C,v $
// Revision 1.1.1.1 2001/05/18 23:14:05 mb
// Move from private repository to open source repository
//
// MS 92
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-examples/simple/genber.C,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-examples/simple/Attic/genber.C,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
// $Log: genber.C,v $
// Revision 1.1.1.1 2001/05/18 23:14:05 mb
// Move from private repository to open source repository
#
# WARNING: this makefile isn't safe for parallel making!
#
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-examples/simple/makefile,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-examples/simple/Attic/makefile,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
# $Log: makefile,v $
# Revision 1.1.1.1 2001/05/18 23:14:05 mb
# Move from private repository to open source repository
this problem the with value "private" in rfc1155-smi.asn1.
#-------------------------------------------------------------------------------
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-examples/snmp/README,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-examples/snmp/Attic/README,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
# $Log: README,v $
# Revision 1.1.1.1 2001/05/18 23:14:05 mb
# Move from private repository to open source repository
# c++-examples/snmp/makefile
#
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-examples/snmp/makefile,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-examples/snmp/Attic/makefile,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
# $Log: makefile,v $
# Revision 1.1.1.1 2001/05/18 23:14:05 mb
# Move from private repository to open source repository
and and compared with the original value.
#-------------------------------------------------------------------------------
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-examples/test-lib/README,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-examples/test-lib/Attic/README,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
# $Log: README,v $
# Revision 1.1.1.1 2001/05/18 23:14:05 mb
# Move from private repository to open source repository
# c++-examples/test-lib/makefile
#
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-examples/test-lib/makefile,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-examples/test-lib/Attic/makefile,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
# $Log: makefile,v $
# Revision 1.1.1.1 2001/05/18 23:14:05 mb
# Move from private repository to open source repository
// c++_examples/test_lib/test_lib.C
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-examples/test-lib/test-lib.C,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-examples/test-lib/Attic/test-lib.C,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
// $Log: test-lib.C,v $
// Revision 1.1.1.1 2001/05/18 23:14:05 mb
// Move from private repository to open source repository
documentation.
#-------------------------------------------------------------------------------
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/README,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/Attic/README,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
# $Log: README,v $
# Revision 1.1.1.1 2001/05/18 23:14:05 mb
# Move from private repository to open source repository
//
//
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/c++/asn-any.cpp,v 1.4 2002/03/21 05:38:44 dmitch Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/c++/Attic/asn-any.cpp,v 1.4 2002/03/21 05:38:44 dmitch Exp $
// $Log: asn-any.cpp,v $
// Revision 1.4 2002/03/21 05:38:44 dmitch
// Radar 2868524: no more setjmp/longjmp in SNACC-generated code.
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/c++/asn-bits.cpp,v 1.4 2002/03/21 05:38:44 dmitch Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/c++/Attic/asn-bits.cpp,v 1.4 2002/03/21 05:38:44 dmitch Exp $
// $Log: asn-bits.cpp,v $
// Revision 1.4 2002/03/21 05:38:44 dmitch
// Radar 2868524: no more setjmp/longjmp in SNACC-generated code.
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/c++/asn-bool.cpp,v 1.3 2002/03/21 05:38:44 dmitch Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/c++/Attic/asn-bool.cpp,v 1.3 2002/03/21 05:38:44 dmitch Exp $
// $Log: asn-bool.cpp,v $
// Revision 1.3 2002/03/21 05:38:44 dmitch
// Radar 2868524: no more setjmp/longjmp in SNACC-generated code.
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/c++/asn-enum.cpp,v 1.3 2002/03/21 05:38:44 dmitch Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/c++/Attic/asn-enum.cpp,v 1.3 2002/03/21 05:38:44 dmitch Exp $
// $Log: asn-enum.cpp,v $
// Revision 1.3 2002/03/21 05:38:44 dmitch
// Radar 2868524: no more setjmp/longjmp in SNACC-generated code.
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/c++/asn-int.cpp,v 1.3 2002/03/21 05:38:44 dmitch Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/c++/Attic/asn-int.cpp,v 1.3 2002/03/21 05:38:44 dmitch Exp $
// $Log: asn-int.cpp,v $
// Revision 1.3 2002/03/21 05:38:44 dmitch
// Radar 2868524: no more setjmp/longjmp in SNACC-generated code.
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/c++/asn-list.cpp,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/c++/Attic/asn-list.cpp,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
// $Log: asn-list.cpp,v $
// Revision 1.1.1.1 2001/05/18 23:14:06 mb
// Move from private repository to open source repository
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/c++/asn-null.cpp,v 1.3 2002/03/21 05:38:44 dmitch Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/c++/Attic/asn-null.cpp,v 1.3 2002/03/21 05:38:44 dmitch Exp $
// $Log: asn-null.cpp,v $
// Revision 1.3 2002/03/21 05:38:44 dmitch
// Radar 2868524: no more setjmp/longjmp in SNACC-generated code.
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/c++/asn-octs.cpp,v 1.3 2002/03/21 05:38:44 dmitch Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/c++/Attic/asn-octs.cpp,v 1.3 2002/03/21 05:38:44 dmitch Exp $
// $Log: asn-octs.cpp,v $
// Revision 1.3 2002/03/21 05:38:44 dmitch
// Radar 2868524: no more setjmp/longjmp in SNACC-generated code.
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/c++/asn-oid.cpp,v 1.4 2002/03/21 05:38:45 dmitch Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/c++/Attic/asn-oid.cpp,v 1.4 2002/03/21 05:38:45 dmitch Exp $
// $Log: asn-oid.cpp,v $
// Revision 1.4 2002/03/21 05:38:45 dmitch
// Radar 2868524: no more setjmp/longjmp in SNACC-generated code.
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/c++/asn-real.cpp,v 1.4 2002/03/21 05:38:45 dmitch Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/c++/Attic/asn-real.cpp,v 1.4 2002/03/21 05:38:45 dmitch Exp $
// $Log: asn-real.cpp,v $
// Revision 1.4 2002/03/21 05:38:45 dmitch
// Radar 2868524: no more setjmp/longjmp in SNACC-generated code.
//
// MS 92
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/c++/asn-type.cpp,v 1.3 2002/03/21 05:38:45 dmitch Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/c++/Attic/asn-type.cpp,v 1.3 2002/03/21 05:38:45 dmitch Exp $
// $Log: asn-type.cpp,v $
// Revision 1.3 2002/03/21 05:38:45 dmitch
// Radar 2868524: no more setjmp/longjmp in SNACC-generated code.
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/c++/hash.cpp,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/c++/Attic/hash.cpp,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
// $Log: hash.cpp,v $
// Revision 1.1.1.1 2001/05/18 23:14:06 mb
// Move from private repository to open source repository
// file: .../c++-lib/src/meta.C
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/c++/meta.cpp,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/c++/Attic/meta.cpp,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
// $Log: meta.cpp,v $
// Revision 1.1.1.1 2001/05/18 23:14:06 mb
// Move from private repository to open source repository
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/c++/print.cpp,v 1.4 2001/06/28 22:49:58 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/c++/Attic/print.cpp,v 1.4 2001/06/28 22:49:58 mb Exp $
// $Log: print.cpp,v $
// Revision 1.4 2001/06/28 22:49:58 mb
// Saved 4 bytes of data when compiling with -DNDEBUG
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/c++/str-stk.cpp,v 1.2 2002/02/07 04:30:04 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/c++/Attic/str-stk.cpp,v 1.2 2002/02/07 04:30:04 mb Exp $
// $Log: str-stk.cpp,v $
// Revision 1.2 2002/02/07 04:30:04 mb
// Fixes required to build with gcc3.
// file: .../c++-lib/src/tcl-if.C
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/c++/tcl-if.cpp,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/c++/Attic/tcl-if.cpp,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
// $Log: tcl-if.cpp,v $
// Revision 1.1.1.1 2001/05/18 23:14:06 mb
// Move from private repository to open source repository
/*
* snacced - Snacc_Init added to the default tkXAppInit.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/c++/tkAppInit.c,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/c++/Attic/tkAppInit.c,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
* $Log: tkAppInit.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:06 mb
* Move from private repository to open source repository
*/
#ifndef lint
-static char rcsid[] = "$Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/c++/tkAppInit.c,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $ SPRITE (Berkeley)";
+static char rcsid[] = "$Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/c++/Attic/tkAppInit.c,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $ SPRITE (Berkeley)";
#endif /* not lint */
#include <tk.h>
//
//
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/inc/asn-any.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/inc/Attic/asn-any.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
// $Log: asn-any.h,v $
// Revision 1.1.1.1 2001/05/18 23:14:06 mb
// Move from private repository to open source repository
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/inc/asn-bits.h,v 1.2 2001/06/28 23:36:11 dmitch Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/inc/Attic/asn-bits.h,v 1.2 2001/06/28 23:36:11 dmitch Exp $
// $Log: asn-bits.h,v $
// Revision 1.2 2001/06/28 23:36:11 dmitch
// Removed SccsId statics. numToHexCharTblG table now const. Radar 2705410.
//
//
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/inc/asn-bool.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/inc/Attic/asn-bool.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
// $Log: asn-bool.h,v $
// Revision 1.1.1.1 2001/05/18 23:14:06 mb
// Move from private repository to open source repository
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/inc/asn-buf.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/inc/Attic/asn-buf.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
// $Log: asn-buf.h,v $
// Revision 1.1.1.1 2001/05/18 23:14:06 mb
// Move from private repository to open source repository
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/inc/asn-config.h,v 1.7 2002/06/12 18:36:31 dmitch Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/inc/Attic/asn-config.h,v 1.7 2002/06/12 18:36:31 dmitch Exp $
// $Log: asn-config.h,v $
// Revision 1.7 2002/06/12 18:36:31 dmitch
// Radar 2951933: Avoid including iostream in asn-config.h for NDEBUG builds.
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/inc/asn-enum.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/inc/Attic/asn-enum.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
// $Log: asn-enum.h,v $
// Revision 1.1.1.1 2001/05/18 23:14:06 mb
// Move from private repository to open source repository
//
//
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/inc/asn-incl.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/inc/Attic/asn-incl.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
// $Log: asn-incl.h,v $
// Revision 1.1.1.1 2001/05/18 23:14:06 mb
// Move from private repository to open source repository
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/inc/asn-int.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/inc/Attic/asn-int.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
// $Log: asn-int.h,v $
// Revision 1.1.1.1 2001/05/18 23:14:06 mb
// Move from private repository to open source repository
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/inc/asn-len.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/inc/Attic/asn-len.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
// $Log: asn-len.h,v $
// Revision 1.1.1.1 2001/05/18 23:14:06 mb
// Move from private repository to open source repository
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/inc/asn-list.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/inc/Attic/asn-list.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
// $Log: asn-list.h,v $
// Revision 1.1.1.1 2001/05/18 23:14:06 mb
// Move from private repository to open source repository
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/inc/asn-null.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/inc/Attic/asn-null.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
// $Log: asn-null.h,v $
// Revision 1.1.1.1 2001/05/18 23:14:06 mb
// Move from private repository to open source repository
//
//
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/inc/asn-octs.h,v 1.2 2002/04/18 18:58:08 dmitch Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/inc/Attic/asn-octs.h,v 1.2 2002/04/18 18:58:08 dmitch Exp $
// $Log: asn-octs.h,v $
// Revision 1.2 2002/04/18 18:58:08 dmitch
// Radar 2904404 - avoid deprecated iostream.h
//
//
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/inc/asn-oid.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/inc/Attic/asn-oid.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
// $Log: asn-oid.h,v $
// Revision 1.1.1.1 2001/05/18 23:14:06 mb
// Move from private repository to open source repository
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/inc/asn-real.h,v 1.2 2001/06/21 21:57:00 dmitch Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/inc/Attic/asn-real.h,v 1.2 2001/06/21 21:57:00 dmitch Exp $
// $Log: asn-real.h,v $
// Revision 1.2 2001/06/21 21:57:00 dmitch
// Avoid global const PLUS_INFINITY, MINUS_INFINITY
//
//
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/inc/asn-tag.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/inc/Attic/asn-tag.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
// $Log: asn-tag.h,v $
// Revision 1.1.1.1 2001/05/18 23:14:06 mb
// Move from private repository to open source repository
//
// MS 92
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/inc/asn-type.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/inc/Attic/asn-type.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
// $Log: asn-type.h,v $
// Revision 1.1.1.1 2001/05/18 23:14:06 mb
// Move from private repository to open source repository
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/inc/hash.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/inc/Attic/hash.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
// $Log: hash.h,v $
// Revision 1.1.1.1 2001/05/18 23:14:06 mb
// Move from private repository to open source repository
/*
* file: .../c++-lib/inc/init.h
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/inc/init.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/inc/Attic/init.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
* $Log: init.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:06 mb
* Move from private repository to open source repository
// file: .../c++-lib/inc/meta.h
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/inc/meta.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/inc/Attic/meta.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
// $Log: meta.h,v $
// Revision 1.1.1.1 2001/05/18 23:14:06 mb
// Move from private repository to open source repository
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/inc/print.h,v 1.3 2001/06/27 23:57:51 dmitch Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/inc/Attic/print.h,v 1.3 2001/06/27 23:57:51 dmitch Exp $
// $Log: print.h,v $
// Revision 1.3 2001/06/27 23:57:51 dmitch
// Reimplement partial fix for Radar 2664258: Print() routines are now empty stubs in NDEBUG config.
*
*
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/inc/snacc.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/inc/Attic/snacc.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
* $Log: snacc.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:06 mb
* Move from private repository to open source repository
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/inc/str-stk.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/inc/Attic/str-stk.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
// $Log: str-stk.h,v $
// Revision 1.1.1.1 2001/05/18 23:14:06 mb
// Move from private repository to open source repository
// file: .../c++-lib/inc/tcl-if.h
//
-// $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/inc/tcl-if.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
+// $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/inc/Attic/tcl-if.h,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
// $Log: tcl-if.h,v $
// Revision 1.1.1.1 2001/05/18 23:14:06 mb
// Move from private repository to open source repository
#
# MS 92
#
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/makefile,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/Attic/makefile,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
# $Log: makefile,v $
# Revision 1.1.1.1 2001/05/18 23:14:05 mb
# Move from private repository to open source repository
/*
* snacced - Snacc_Init added to the default tkXAppInit.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/src/tkAppInit.c,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/src/Attic/tkAppInit.c,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
* $Log: tkAppInit.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:07 mb
* Move from private repository to open source repository
*/
#ifndef lint
-static char rcsid[] = "$Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/src/tkAppInit.c,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $ SPRITE (Berkeley)";
+static char rcsid[] = "$Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/src/Attic/tkAppInit.c,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $ SPRITE (Berkeley)";
#endif /* not lint */
#include <tk.h>
add all the mappings to the hash table(s).
#-------------------------------------------------------------------------------
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-examples/any/README,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/c-examples/any/Attic/README,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
# $Log: README,v $
# Revision 1.1.1.1 2001/05/18 23:14:07 mb
# Move from private repository to open source repository
* AUTHOR: Mike Sample
* DATE: Mar 92
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-examples/any/example.c,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-examples/any/Attic/example.c,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
* $Log: example.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:07 mb
* Move from private repository to open source repository
*
* MS 92
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-examples/any/genber.c,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-examples/any/Attic/genber.c,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
* $Log: genber.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:07 mb
* Move from private repository to open source repository
#
# MS 92
#
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-examples/any/makefile,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/c-examples/any/Attic/makefile,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
# $Log: makefile,v $
# Revision 1.1.1.1 2001/05/18 23:14:07 mb
# Move from private repository to open source repository
# c-examples/makefile
#
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-examples/makefile,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/c-examples/Attic/makefile,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
# $Log: makefile,v $
# Revision 1.1.1.1 2001/05/18 23:14:07 mb
# Move from private repository to open source repository
macros in snacc/c_lib/asn_len.h to check a global flag.
#-------------------------------------------------------------------------------
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-examples/simple/README,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/c-examples/simple/Attic/README,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
# $Log: README,v $
# Revision 1.1.1.1 2001/05/18 23:14:07 mb
# Move from private repository to open source repository
* AUTHOR: Mike Sample
* DATE: Mar 92
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-examples/simple/expbuf-ex.c,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-examples/simple/Attic/expbuf-ex.c,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
* $Log: expbuf-ex.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:07 mb
* Move from private repository to open source repository
*
* MS 92
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-examples/simple/genber.c,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-examples/simple/Attic/genber.c,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
* $Log: genber.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:07 mb
* Move from private repository to open source repository
#
# WARNING: this makefile isn't safe for parallel making!
#
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-examples/simple/makefile,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/c-examples/simple/Attic/makefile,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
# $Log: makefile,v $
# Revision 1.1.1.1 2001/05/18 23:14:07 mb
# Move from private repository to open source repository
* AUTHOR: Mike Sample
* DATE: Mar 92
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-examples/simple/minbuf-ex.c,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-examples/simple/Attic/minbuf-ex.c,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
* $Log: minbuf-ex.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:07 mb
* Move from private repository to open source repository
* AUTHOR: Mike Sample
* DATE: Mar 92
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-examples/simple/sbuf-ex.c,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-examples/simple/Attic/sbuf-ex.c,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
* $Log: sbuf-ex.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:07 mb
* Move from private repository to open source repository
type (ANY DEFINED BY types should work automatically).
#-------------------------------------------------------------------------------
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-examples/snmp/README,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/c-examples/snmp/Attic/README,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
# $Log: README,v $
# Revision 1.1.1.1 2001/05/18 23:14:07 mb
# Move from private repository to open source repository
# c-examples/snmp/makefile
#
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-examples/snmp/makefile,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/c-examples/snmp/Attic/makefile,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
# $Log: makefile,v $
# Revision 1.1.1.1 2001/05/18 23:14:07 mb
# Move from private repository to open source repository
and and compared with the original value.
#-------------------------------------------------------------------------------
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-examples/test-lib/README,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/c-examples/test-lib/Attic/README,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
# $Log: README,v $
# Revision 1.1.1.1 2001/05/18 23:14:07 mb
# Move from private repository to open source repository
# c-examples/test-lib/makefile
#
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-examples/test-lib/makefile,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/c-examples/test-lib/Attic/makefile,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
# $Log: makefile,v $
# Revision 1.1.1.1 2001/05/18 23:14:07 mb
# Move from private repository to open source repository
*
* MS 92
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-examples/test-lib/test-lib.c,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-examples/test-lib/Attic/test-lib.c,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
* $Log: test-lib.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:07 mb
* Move from private repository to open source repository
link with libasn1csbuf.a).
#-------------------------------------------------------------------------------
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/README,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/Attic/README,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
# $Log: README,v $
# Revision 1.1.1.1 2001/05/18 23:14:07 mb
# Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/asn-any.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/asn-any.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: asn-any.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/asn-bits.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/asn-bits.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: asn-bits.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/asn-bool.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/asn-bool.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: asn-bool.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/asn-enum.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/asn-enum.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: asn-enum.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/asn-incl.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/asn-incl.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: asn-incl.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/asn-int.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/asn-int.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: asn-int.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/asn-len.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/asn-len.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: asn-len.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/asn-list.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/asn-list.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: asn-list.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/asn-null.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/asn-null.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: asn-null.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/asn-octs.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/asn-octs.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: asn-octs.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/asn-oid.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/asn-oid.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: asn-oid.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/asn-real.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/asn-real.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: asn-real.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
*
* INSERT_VDA_COMMENTS
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/asn-tag.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/asn-tag.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: asn-tag.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/exp-buf.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/exp-buf.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: exp-buf.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/hash.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/hash.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: hash.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/mem.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/mem.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: mem.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/min-buf.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/min-buf.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: min-buf.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/nibble-alloc.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/nibble-alloc.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: nibble-alloc.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/print.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/print.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: print.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/sbuf.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/sbuf.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: sbuf.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/str-stk.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/str-stk.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: str-stk.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/tbl-dec.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/tbl-dec.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: tbl-dec.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/tbl-enc.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/tbl-enc.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: tbl-enc.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/tbl-free.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/tbl-free.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: tbl-free.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/tbl-gen-c-hdr.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/tbl-gen-c-hdr.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: tbl-gen-c-hdr.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/tbl-incl.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/tbl-incl.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: tbl-incl.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/tbl-print.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/tbl-print.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: tbl-print.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/inc/tbl-util.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/inc/Attic/tbl-util.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: tbl-util.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
#
# MS 92
#
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/makefile,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/Attic/makefile,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
# $Log: makefile,v $
# Revision 1.1.1.1 2001/05/18 23:14:07 mb
# Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/src/asn-any.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/src/Attic/asn-any.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: asn-any.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/src/asn-bits.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/src/Attic/asn-bits.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: asn-bits.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/src/asn-bool.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/src/Attic/asn-bool.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: asn-bool.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/src/asn-enum.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/src/Attic/asn-enum.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: asn-enum.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/src/asn-int.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/src/Attic/asn-int.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: asn-int.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/src/asn-len.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/src/Attic/asn-len.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: asn-len.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/src/asn-list.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/src/Attic/asn-list.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: asn-list.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/src/asn-null.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/src/Attic/asn-null.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: asn-null.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/src/asn-octs.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/src/Attic/asn-octs.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: asn-octs.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/src/asn-oid.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/src/Attic/asn-oid.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: asn-oid.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/src/asn-real.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/src/Attic/asn-real.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: asn-real.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/src/asn-tag.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/src/Attic/asn-tag.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: asn-tag.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/src/exp-buf.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/src/Attic/exp-buf.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: exp-buf.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/src/hash.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/src/Attic/hash.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: hash.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/src/nibble-alloc.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/src/Attic/nibble-alloc.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: nibble-alloc.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/src/print.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/src/Attic/print.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: print.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-lib/src/str-stk.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/c-lib/src/Attic/str-stk.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: str-stk.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
related src: core/snacc.c back_ends/*
#-------------------------------------------------------------------------------
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/README,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/Attic/README,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
# $Log: README,v $
# Revision 1.1.1.1 2001/05/18 23:14:08 mb
# Move from private repository to open source repository
*
* INSERT_VDA_COMMENTS
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c++-gen/gen-any.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c++-gen/Attic/gen-any.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-any.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c++-gen/gen-any.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c++-gen/Attic/gen-any.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-any.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* INSERT_VDA_COMMENTS
*
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c++-gen/gen-code.c,v 1.4 2002/03/21 05:38:53 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c++-gen/Attic/gen-code.c,v 1.4 2002/03/21 05:38:53 dmitch Exp $
* $Log: gen-code.c,v $
* Revision 1.4 2002/03/21 05:38:53 dmitch
* Radar 2868524: no more setjmp/longjmp in SNACC-generated code.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c++-gen/gen-code.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c++-gen/Attic/gen-code.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-code.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c++-gen/gen-vals.c,v 1.3 2001/06/25 21:51:10 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c++-gen/Attic/gen-vals.c,v 1.3 2001/06/25 21:51:10 dmitch Exp $
* $Log: gen-vals.c,v $
* Revision 1.3 2001/06/25 21:51:10 dmitch
* Avoid instantiating AsnInt constants; use #define instead. Partial fix for Radar 2664258.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c++-gen/gen-vals.h,v 1.3 2001/06/25 21:51:10 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c++-gen/Attic/gen-vals.h,v 1.3 2001/06/25 21:51:10 dmitch Exp $
* $Log: gen-vals.h,v $
* Revision 1.3 2001/06/25 21:51:10 dmitch
* Avoid instantiating AsnInt constants; use #define instead. Partial fix for Radar 2664258.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c++-gen/kwd.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c++-gen/Attic/kwd.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: kwd.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c++-gen/kwd.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c++-gen/Attic/kwd.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: kwd.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c++-gen/rules.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c++-gen/Attic/rules.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: rules.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c++-gen/rules.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c++-gen/Attic/rules.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: rules.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
*
* INSERT_VDA_COMMENTS
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c++-gen/types.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c++-gen/Attic/types.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: types.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c++-gen/types.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c++-gen/Attic/types.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: types.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/gen-any.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/gen-any.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-any.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/gen-any.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/gen-any.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-any.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/gen-any2.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/gen-any2.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-any2.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/gen-code.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/gen-code.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-code.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/gen-code.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/gen-code.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-code.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/gen-code2.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/gen-code2.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-code2.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/gen-dec.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/gen-dec.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-dec.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/gen-dec.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/gen-dec.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-dec.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/gen-enc.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/gen-enc.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-enc.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/gen-enc.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/gen-enc.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-enc.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/gen-free.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/gen-free.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-free.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/gen-free.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/gen-free.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-free.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/gen-print.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/gen-print.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-print.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/gen-print.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/gen-print.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-print.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/gen-type.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/gen-type.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-type.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/gen-type.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/gen-type.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-type.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/gen-vals.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/gen-vals.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-vals.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/gen-vals.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/gen-vals.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-vals.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/gen-vals2.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/gen-vals2.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-vals2.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/kwd.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/kwd.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: kwd.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/kwd.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/kwd.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: kwd.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/kwd2.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/kwd2.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: kwd2.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/rules.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/rules.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: rules.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/rules.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/rules.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: rules.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/rules2.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/rules2.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: rules2.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/type-info.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/type-info.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: type-info.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/type-info.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/type-info.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: type-info.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/util.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/util.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: util.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/util.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/c-gen/Attic/util.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: util.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/cond.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/Attic/cond.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: cond.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/cond.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/Attic/cond.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: cond.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/idl-gen/gen-any.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/idl-gen/Attic/gen-any.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-any.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/idl-gen/gen-any.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/idl-gen/Attic/gen-any.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-any.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/idl-gen/gen-code.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/idl-gen/Attic/gen-code.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-code.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/idl-gen/gen-code.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/idl-gen/Attic/gen-code.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-code.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/idl-gen/gen-vals.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/idl-gen/Attic/gen-vals.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-vals.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/idl-gen/gen-vals.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/idl-gen/Attic/gen-vals.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: gen-vals.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/idl-gen/rules.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/idl-gen/Attic/rules.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: rules.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/idl-gen/rules.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/idl-gen/Attic/rules.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: rules.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/idl-gen/types.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/idl-gen/Attic/types.c,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: types.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/idl-gen/types.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/idl-gen/Attic/types.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: types.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/str-util.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/Attic/str-util.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: str-util.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/str-util.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/Attic/str-util.h,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: str-util.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
*
* INSERT_VDA_COMMENTS
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/tag-util.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/Attic/tag-util.c,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
* $Log: tag-util.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:08 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/back-ends/tag-util.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/back-ends/Attic/tag-util.h,v 1.1.1.1 2001/05/18 23:14:09 mb Exp $
* $Log: tag-util.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:09 mb
* Move from private repository to open source repository
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/define.c,v 1.1 2001/06/20 21:27:56 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/define.c,v 1.1 2001/06/20 21:27:56 dmitch Exp $
* $Log: define.c,v $
* Revision 1.1 2001/06/20 21:27:56 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/define.h,v 1.1 2001/06/20 21:27:56 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/define.h,v 1.1 2001/06/20 21:27:56 dmitch Exp $
* $Log: define.h,v $
* Revision 1.1 2001/06/20 21:27:56 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/dependency.c,v 1.1 2001/06/20 21:27:56 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/dependency.c,v 1.1 2001/06/20 21:27:56 dmitch Exp $
* $Log: dependency.c,v $
* Revision 1.1 2001/06/20 21:27:56 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/dependency.h,v 1.1 2001/06/20 21:27:56 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/dependency.h,v 1.1 2001/06/20 21:27:56 dmitch Exp $
* $Log: dependency.h,v $
* Revision 1.1 2001/06/20 21:27:56 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/do-macros.c,v 1.1 2001/06/20 21:27:56 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/do-macros.c,v 1.1 2001/06/20 21:27:56 dmitch Exp $
* $Log: do-macros.c,v $
* Revision 1.1 2001/06/20 21:27:56 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/do-macros.h,v 1.1 2001/06/20 21:27:56 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/do-macros.h,v 1.1 2001/06/20 21:27:56 dmitch Exp $
* $Log: do-macros.h,v $
* Revision 1.1 2001/06/20 21:27:56 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/err-chk.c,v 1.1 2001/06/20 21:27:56 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/err-chk.c,v 1.1 2001/06/20 21:27:56 dmitch Exp $
* $Log: err-chk.c,v $
* Revision 1.1 2001/06/20 21:27:56 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/err-chk.h,v 1.1 2001/06/20 21:27:56 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/err-chk.h,v 1.1 2001/06/20 21:27:56 dmitch Exp $
* $Log: err-chk.h,v $
* Revision 1.1 2001/06/20 21:27:56 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/exports.c,v 1.1 2001/06/20 21:27:56 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/exports.c,v 1.1 2001/06/20 21:27:56 dmitch Exp $
* $Log: exports.c,v $
* Revision 1.1 2001/06/20 21:27:56 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/exports.h,v 1.1 2001/06/20 21:27:56 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/exports.h,v 1.1 2001/06/20 21:27:56 dmitch Exp $
* $Log: exports.h,v $
* Revision 1.1 2001/06/20 21:27:56 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/gen-tbls.c,v 1.1 2001/06/20 21:27:57 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/gen-tbls.c,v 1.1 2001/06/20 21:27:57 dmitch Exp $
* $Log: gen-tbls.c,v $
* Revision 1.1 2001/06/20 21:27:57 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/gen-tbls.h,v 1.1 2001/06/20 21:27:57 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/gen-tbls.h,v 1.1 2001/06/20 21:27:57 dmitch Exp $
* $Log: gen-tbls.h,v $
* Revision 1.1 2001/06/20 21:27:57 dmitch
* Adding missing snacc compiler files.
/* A lexical scanner generated by flex */
/* Scanner skeleton version:
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/lex-asn1.c,v 1.1 2001/06/20 21:27:57 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/lex-asn1.c,v 1.1 2001/06/20 21:27:57 dmitch Exp $
*/
#define FLEX_SCANNER
/* (at your option) any later version. */
/* these comments must only be a single line each - lex blows it otherwise */
/* due to this claim, the rcs log is at the end of this file. */
-/* $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/lex-asn1.c,v 1.1 2001/06/20 21:27:57 dmitch Exp $ */
+/* $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/lex-asn1.c,v 1.1 2001/06/20 21:27:57 dmitch Exp $ */
/* This lex spec should compile under either lex or flex. */
/* There are three modes to the lexical analyzer, INITIAL, MACRO_DEF, */
/* and BRACE_BAL. INITIAL is the normal mode. MACRO_DEF is used by */
/* these comments must only be a single line each - lex blows it otherwise */
/* due to this claim, the rcs log is at the end of this file. */
-/* $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/lex-asn1.l,v 1.1 2001/06/20 21:27:57 dmitch Exp $ */
+/* $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/lex-asn1.l,v 1.1 2001/06/20 21:27:57 dmitch Exp $ */
/* This lex spec should compile under either lex or flex. */
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/lex-stuff.h,v 1.1 2001/06/20 21:27:57 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/lex-stuff.h,v 1.1 2001/06/20 21:27:57 dmitch Exp $
* $Log: lex-stuff.h,v $
* Revision 1.1 2001/06/20 21:27:57 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/lib-types.c,v 1.1 2001/06/20 21:27:57 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/lib-types.c,v 1.1 2001/06/20 21:27:57 dmitch Exp $
* $Log: lib-types.c,v $
* Revision 1.1 2001/06/20 21:27:57 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/lib-types.h,v 1.1 2001/06/20 21:27:57 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/lib-types.h,v 1.1 2001/06/20 21:27:57 dmitch Exp $
* $Log: lib-types.h,v $
* Revision 1.1 2001/06/20 21:27:57 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/link-types.c,v 1.1 2001/06/20 21:27:57 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/link-types.c,v 1.1 2001/06/20 21:27:57 dmitch Exp $
* $Log: link-types.c,v $
* Revision 1.1 2001/06/20 21:27:57 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/link-types.h,v 1.1 2001/06/20 21:27:57 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/link-types.h,v 1.1 2001/06/20 21:27:57 dmitch Exp $
* $Log: link-types.h,v $
* Revision 1.1 2001/06/20 21:27:57 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/link-values.c,v 1.1 2001/06/20 21:27:57 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/link-values.c,v 1.1 2001/06/20 21:27:57 dmitch Exp $
* $Log: link-values.c,v $
* Revision 1.1 2001/06/20 21:27:57 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/link-values.h,v 1.1 2001/06/20 21:27:57 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/link-values.h,v 1.1 2001/06/20 21:27:57 dmitch Exp $
* $Log: link-values.h,v $
* Revision 1.1 2001/06/20 21:27:57 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/mem.c,v 1.1 2001/06/20 21:27:57 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/mem.c,v 1.1 2001/06/20 21:27:57 dmitch Exp $
* $Log: mem.c,v $
* Revision 1.1 2001/06/20 21:27:57 dmitch
* Adding missing snacc compiler files.
* PURPOSE. See the GNU General Public License and GNU Library General
* Public License for more details.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/meta.c,v 1.1 2001/06/20 21:27:57 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/meta.c,v 1.1 2001/06/20 21:27:57 dmitch Exp $
* $Log: meta.c,v $
* Revision 1.1 2001/06/20 21:27:57 dmitch
* Adding missing snacc compiler files.
* PURPOSE. See the GNU General Public License and GNU Library General
* Public License for more details.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/meta.h,v 1.1 2001/06/20 21:27:57 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/meta.h,v 1.1 2001/06/20 21:27:57 dmitch Exp $
* $Log: meta.h,v $
* Revision 1.1 2001/06/20 21:27:57 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/normalize.c,v 1.1 2001/06/20 21:27:58 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/normalize.c,v 1.1 2001/06/20 21:27:58 dmitch Exp $
* $Log: normalize.c,v $
* Revision 1.1 2001/06/20 21:27:58 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/normalize.h,v 1.1 2001/06/20 21:27:58 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/normalize.h,v 1.1 2001/06/20 21:27:58 dmitch Exp $
* $Log: normalize.h,v $
* Revision 1.1 2001/06/20 21:27:58 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/oid.c,v 1.1 2001/06/20 21:27:58 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/oid.c,v 1.1 2001/06/20 21:27:58 dmitch Exp $
* $Log: oid.c,v $
* Revision 1.1 2001/06/20 21:27:58 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/oid.h,v 1.1 2001/06/20 21:27:58 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/oid.h,v 1.1 2001/06/20 21:27:58 dmitch Exp $
* $Log: oid.h,v $
* Revision 1.1 2001/06/20 21:27:58 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/parse-asn1.y,v 1.1 2001/06/20 21:27:58 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/parse-asn1.y,v 1.1 2001/06/20 21:27:58 dmitch Exp $
* $Log: parse-asn1.y,v $
* Revision 1.1 2001/06/20 21:27:58 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/parser.h,v 1.1 2001/06/20 21:27:58 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/parser.h,v 1.1 2001/06/20 21:27:58 dmitch Exp $
* $Log: parser.h,v $
* Revision 1.1 2001/06/20 21:27:58 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/print.c,v 1.1 2001/06/20 21:27:58 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/print.c,v 1.1 2001/06/20 21:27:58 dmitch Exp $
* $Log: print.c,v $
* Revision 1.1 2001/06/20 21:27:58 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/print.h,v 1.1 2001/06/20 21:27:58 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/print.h,v 1.1 2001/06/20 21:27:58 dmitch Exp $
* $Log: print.h,v $
* Revision 1.1 2001/06/20 21:27:58 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/print2.c,v 1.1 2001/06/20 21:27:58 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/print2.c,v 1.1 2001/06/20 21:27:58 dmitch Exp $
* $Log: print2.c,v $
* Revision 1.1 2001/06/20 21:27:58 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/recursive.c,v 1.1 2001/06/20 21:27:58 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/recursive.c,v 1.1 2001/06/20 21:27:58 dmitch Exp $
* $Log: recursive.c,v $
* Revision 1.1 2001/06/20 21:27:58 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/recursive.h,v 1.1 2001/06/20 21:27:59 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/recursive.h,v 1.1 2001/06/20 21:27:59 dmitch Exp $
* $Log: recursive.h,v $
* Revision 1.1 2001/06/20 21:27:59 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/snacc-util.c,v 1.1 2001/06/20 21:27:59 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/snacc-util.c,v 1.1 2001/06/20 21:27:59 dmitch Exp $
* $Log: snacc-util.c,v $
* Revision 1.1 2001/06/20 21:27:59 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/snacc-util.h,v 1.1 2001/06/20 21:27:59 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/snacc-util.h,v 1.1 2001/06/20 21:27:59 dmitch Exp $
* $Log: snacc-util.h,v $
* Revision 1.1 2001/06/20 21:27:59 dmitch
* Adding missing snacc compiler files.
*
* INSERT_VDA_COMMENTS
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/snacc.c,v 1.1 2001/06/20 21:27:59 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/snacc.c,v 1.1 2001/06/20 21:27:59 dmitch Exp $
* $Log: snacc.c,v $
* Revision 1.1 2001/06/20 21:27:59 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/val-parser.c,v 1.1 2001/06/20 21:27:59 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/val-parser.c,v 1.1 2001/06/20 21:27:59 dmitch Exp $
* $Log: val-parser.c,v $
* Revision 1.1 2001/06/20 21:27:59 dmitch
* Adding missing snacc compiler files.
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/core/val-parser.h,v 1.1 2001/06/20 21:27:59 dmitch Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/core/Attic/val-parser.h,v 1.1 2001/06/20 21:27:59 dmitch Exp $
* $Log: val-parser.h,v $
* Revision 1.1 2001/06/20 21:27:59 dmitch
* Adding missing snacc compiler files.
# Mike Sample
# 1992
#
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/compiler/makefile,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/compiler/Attic/makefile,v 1.1.1.1 2001/05/18 23:14:08 mb Exp $
# $Log: makefile,v $
# Revision 1.1.1.1 2001/05/18 23:14:08 mb
# Move from private repository to open source repository
/*
* file: acconfig.h
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/config.h.in,v 1.1.1.1 2001/05/18 23:14:04 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/Attic/config.h.in,v 1.1.1.1 2001/05/18 23:14:04 mb Exp $
* $Log: config.h.in,v $
* Revision 1.1.1.1 2001/05/18 23:14:04 mb
* Move from private repository to open source repository
% file: .../doc/asn1-defs.tex
-% $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/asn1-defs.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+% $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/asn1-defs.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
% $Log: asn1-defs.tex,v $
% Revision 1.1.1.1 2001/05/18 23:14:10 mb
% Move from private repository to open source repository
% file: .../doc/c++-gen.tex
-% $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/c++-gen.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+% $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/c++-gen.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
% $Log: c++-gen.tex,v $
% Revision 1.1.1.1 2001/05/18 23:14:10 mb
% Move from private repository to open source repository
% file: .../doc/c++-lib.tex
-% $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/c++-lib.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+% $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/c++-lib.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
% $Log: c++-lib.tex,v $
% Revision 1.1.1.1 2001/05/18 23:14:10 mb
% Move from private repository to open source repository
% file: .../doc/c-gen.tex
-% $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/c-gen.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+% $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/c-gen.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
% $Log: c-gen.tex,v $
% Revision 1.1.1.1 2001/05/18 23:14:10 mb
% Move from private repository to open source repository
% file: .../doc/c-lib.tex
-% $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/c-lib.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+% $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/c-lib.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
% $Log: c-lib.tex,v $
% Revision 1.1.1.1 2001/05/18 23:14:10 mb
% Move from private repository to open source repository
% file: .../doc/coding.tex
-% $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/coding.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+% $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/coding.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
% $Log: coding.tex,v $
% Revision 1.1.1.1 2001/05/18 23:14:10 mb
% Move from private repository to open source repository
% file: .../doc/corba.bib
-% $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/corba.bib,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+% $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/corba.bib,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
% $Log: corba.bib,v $
% Revision 1.1.1.1 2001/05/18 23:14:10 mb
% Move from private repository to open source repository
% file: .../doc/design.tex
-% $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/design.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+% $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/design.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
% $Log: design.tex,v $
% Revision 1.1.1.1 2001/05/18 23:14:10 mb
% Move from private repository to open source repository
% file: .../doc/editor.tex
-% $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/editor.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+% $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/editor.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
% $Log: editor.tex,v $
% Revision 1.1.1.1 2001/05/18 23:14:10 mb
% Move from private repository to open source repository
% file: .../doc/future-work.tex
-% $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/future-work.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+% $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/future-work.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
% $Log: future-work.tex,v $
% Revision 1.1.1.1 2001/05/18 23:14:10 mb
% Move from private repository to open source repository
% file: .../doc/idl-gen.tex
-% $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/idl-gen.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+% $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/idl-gen.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
% $Log: idl-gen.tex,v $
% Revision 1.1.1.1 2001/05/18 23:14:10 mb
% Move from private repository to open source repository
% file: .../doc/intro-1.1.tex
-% $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/intro-1.1.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+% $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/intro-1.1.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
% $Log: intro-1.1.tex,v $
% Revision 1.1.1.1 2001/05/18 23:14:10 mb
% Move from private repository to open source repository
% file: .../doc/intro-1.2.tex
-% $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/intro-1.2.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+% $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/intro-1.2.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
% $Log: intro-1.2.tex,v $
% Revision 1.1.1.1 2001/05/18 23:14:10 mb
% Move from private repository to open source repository
#
# if latex bombs unexplainably, try 'make clean' followed by 'make'
#
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/makefile,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/makefile,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
# $Log: makefile,v $
# Revision 1.1.1.1 2001/05/18 23:14:10 mb
# Move from private repository to open source repository
% file: .../doc/makefile.tex
-% $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/makefile.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+% $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/makefile.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
% $Log: makefile.tex,v $
% Revision 1.1.1.1 2001/05/18 23:14:10 mb
% Move from private repository to open source repository
% file: .../doc/meta.tex
-% $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/meta.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+% $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/meta.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
% $Log: meta.tex,v $
% Revision 1.1.1.1 2001/05/18 23:14:10 mb
% Move from private repository to open source repository
% file: .../doc/misc-hyph.tex
-% $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/misc-hyph.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+% $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/misc-hyph.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
% $Log: misc-hyph.tex,v $
% Revision 1.1.1.1 2001/05/18 23:14:10 mb
% Move from private repository to open source repository
.\" Copyright (c) 1993 by Mike Sample and UBC
.\" See section COPYING for conditions for redistribution
-.\" $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/mkchdr.1,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+.\" $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/mkchdr.1,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
.\" $Log: mkchdr.1,v $
.\" Revision 1.1.1.1 2001/05/18 23:14:10 mb
.\" Move from private repository to open source repository
% file: .../doc/modifying.tex
-% $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/modifying.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+% $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/modifying.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
% $Log: modifying.tex,v $
% Revision 1.1.1.1 2001/05/18 23:14:10 mb
% Move from private repository to open source repository
.\" Copyright (c) 1993 by Mike Sample and UBC
.\" See section COPYING for conditions for redistribution
-.\" $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/ptbl.1,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+.\" $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/ptbl.1,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
.\" $Log: ptbl.1,v $
.\" Revision 1.1.1.1 2001/05/18 23:14:10 mb
.\" Move from private repository to open source repository
.\" Copyright (c) 1993 by Mike Sample and UBC
.\" See section COPYING for conditions for redistribution
-.\" $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/pval.1,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+.\" $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/pval.1,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
.\" $Log: pval.1,v $
.\" Revision 1.1.1.1 2001/05/18 23:14:10 mb
.\" Move from private repository to open source repository
.\" Copyright (c) 1993 by Mike Sample and UBC
.\" See section COPYING for conditions for redistribution
-.\" $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/snacc.1,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+.\" $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/snacc.1,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
.\" $Log: snacc.1,v $
.\" Revision 1.1.1.1 2001/05/18 23:14:10 mb
.\" Move from private repository to open source repository
% file: .../doc/snacc.bib
-% $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/snacc.bib,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+% $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/snacc.bib,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
% $Log: snacc.bib,v $
% Revision 1.1.1.1 2001/05/18 23:14:10 mb
% Move from private repository to open source repository
'\" This manual page, except for the introductory troff macros, is
'\" Copyright (c) 1995 by Robert Joop.
'\"
-'\" $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/snacc.n,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+'\" $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/snacc.n,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
'\" $Log: snacc.n,v $
'\" Revision 1.1.1.1 2001/05/18 23:14:10 mb
'\" Move from private repository to open source repository
% file: .../doc/snacc.tex
-% $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/snacc.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+% $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/snacc.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
% $Log: snacc.tex,v $
% Revision 1.1.1.1 2001/05/18 23:14:10 mb
% Move from private repository to open source repository
'\" This manual page, except for the introductory troff macros, is
'\" Copyright (c) 1995 by Robert Joop.
'\"
-'\" $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/snacced.1,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+'\" $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/snacced.1,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
'\" $Log: snacced.1,v $
'\" Revision 1.1.1.1 2001/05/18 23:14:10 mb
'\" Move from private repository to open source repository
% file: .../doc/tcl.bib
-% $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/tcl.bib,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+% $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/tcl.bib,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
% $Log: tcl.bib,v $
% Revision 1.1.1.1 2001/05/18 23:14:10 mb
% Move from private repository to open source repository
% file: .../doc/tcl.tex
-% $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/tcl.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+% $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/tcl.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
% $Log: tcl.tex,v $
% Revision 1.1.1.1 2001/05/18 23:14:10 mb
% Move from private repository to open source repository
% file: .../doc/ttab.tex
-% $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/doc/ttab.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+% $Header: /cvs/root/Security/SecuritySNACCRuntime/doc/Attic/ttab.tex,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
% $Log: ttab.tex,v $
% Revision 1.1.1.1 2001/05/18 23:14:10 mb
% Move from private repository to open source repository
#
# MS 92
#
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/makefile,v 1.1.1.1 2001/05/18 23:14:04 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/Attic/makefile,v 1.1.1.1 2001/05/18 23:14:04 mb Exp $
# $Log: makefile,v $
# Revision 1.1.1.1 2001/05/18 23:14:04 mb
# Move from private repository to open source repository
#
# INSERT_VDA_COMMENTS
#
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/makehead.in,v 1.1.1.1 2001/05/18 23:14:04 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/Attic/makehead.in,v 1.1.1.1 2001/05/18 23:14:04 mb Exp $
# $Log: makehead.in,v $
# Revision 1.1.1.1 2001/05/18 23:14:04 mb
# Move from private repository to open source repository
#
# INSERT_VDA_COMMENTS
#
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/makehead.static,v 1.1.1.1 2001/05/18 23:14:04 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/Attic/makehead.static,v 1.1.1.1 2001/05/18 23:14:04 mb Exp $
# $Log: makehead.static,v $
# Revision 1.1.1.1 2001/05/18 23:14:04 mb
# Move from private repository to open source repository
# file: maketail
#
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/maketail,v 1.1.1.1 2001/05/18 23:14:04 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/Attic/maketail,v 1.1.1.1 2001/05/18 23:14:04 mb Exp $
# $Log: maketail,v $
# Revision 1.1.1.1 2001/05/18 23:14:04 mb
# Move from private repository to open source repository
*
* INSERT_VDA_COMMENTS
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/snacc.h,v 1.1.1.1 2001/05/18 23:14:04 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/Attic/snacc.h,v 1.1.1.1 2001/05/18 23:14:04 mb Exp $
* $Log: snacc.h,v $
* Revision 1.1.1.1 2001/05/18 23:14:04 mb
* Move from private repository to open source repository
A. Look at the manual. (in .../doc/)
#-------------------------------------------------------------------------------
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/tbl-example/README,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/tbl-example/Attic/README,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
# $Log: README,v $
# Revision 1.1.1.1 2001/05/18 23:14:10 mb
# Move from private repository to open source repository
* PURPOSE. See the GNU General Public License and GNU Library General
* Public License for more details.
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/tbl-example/example.c,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/tbl-example/Attic/example.c,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
* $Log: example.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:10 mb
* Move from private repository to open source repository
# file: .../tbl-example/makefile
#
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/tbl-example/makefile,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/tbl-example/Attic/makefile,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
# $Log: makefile,v $
# Revision 1.1.1.1 2001/05/18 23:14:10 mb
# Move from private repository to open source repository
#
# MS 93
#
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/tbl-tools/makefile,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/tbl-tools/Attic/makefile,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
# $Log: makefile,v $
# Revision 1.1.1.1 2001/05/18 23:14:10 mb
# Move from private repository to open source repository
#
# Makefile for the asnwish
#
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/tcl-asn/makefile,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/tcl-asn/Attic/makefile,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
# $Log: makefile,v $
# Revision 1.1.1.1 2001/05/18 23:14:10 mb
# Move from private repository to open source repository
--
-- snacced example, simple types module
--
--- $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/tcl-example/edex0.asn1,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+-- $Header: /cvs/root/Security/SecuritySNACCRuntime/tcl-example/Attic/edex0.asn1,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
-- $Log: edex0.asn1,v $
-- Revision 1.1.1.1 2001/05/18 23:14:10 mb
-- Move from private repository to open source repository
--
-- snacced example, structured types module
--
--- $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/tcl-example/edex1.asn1,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+-- $Header: /cvs/root/Security/SecuritySNACCRuntime/tcl-example/Attic/edex1.asn1,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
-- $Log: edex1.asn1,v $
-- Revision 1.1.1.1 2001/05/18 23:14:10 mb
-- Move from private repository to open source repository
#
# Makefile for the snaccwish
#
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/tcl-example/makefile,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/tcl-example/Attic/makefile,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
# $Log: makefile,v $
# Revision 1.1.1.1 2001/05/18 23:14:10 mb
# Move from private repository to open source repository
# file: help.tcl
# toplevel widget to display a help text (modal)
#
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/tcl-lib/help.tcl,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/tcl-lib/Attic/help.tcl,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
# $Log: help.tcl,v $
# Revision 1.1.1.1 2001/05/18 23:14:10 mb
# Move from private repository to open source repository
# file: .../tcl-lib/makefile
#
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/tcl-lib/makefile,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/tcl-lib/Attic/makefile,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
# $Log: makefile,v $
# Revision 1.1.1.1 2001/05/18 23:14:10 mb
# Move from private repository to open source repository
# file: selbox.tcl
# file and content type selection box (ASN.1)
#
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/tcl-lib/selbox.tcl,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/tcl-lib/Attic/selbox.tcl,v 1.1.1.1 2001/05/18 23:14:10 mb Exp $
# $Log: selbox.tcl,v $
# Revision 1.1.1.1 2001/05/18 23:14:10 mb
# Move from private repository to open source repository
# file: .../tcl-lib/snacced.tcl
#
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/tcl-lib/snacced.tcl,v 1.1.1.1 2001/05/18 23:14:11 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/tcl-lib/Attic/snacced.tcl,v 1.1.1.1 2001/05/18 23:14:11 mb Exp $
# $Log: snacced.tcl,v $
# Revision 1.1.1.1 2001/05/18 23:14:11 mb
# Move from private repository to open source repository
# file: tkuti.tcl
# miscellaneous Tk utilities.
#
-# $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/tcl-lib/tkuti.tcl,v 1.1.1.1 2001/05/18 23:14:11 mb Exp $
+# $Header: /cvs/root/Security/SecuritySNACCRuntime/tcl-lib/Attic/tkuti.tcl,v 1.1.1.1 2001/05/18 23:14:11 mb Exp $
# $Log: tkuti.tcl,v $
# Revision 1.1.1.1 2001/05/18 23:14:11 mb
# Move from private repository to open source repository
* file: tcl-p.c
* purpose: check and return via exit code whether the tcl interface needs to be made
*
- * $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/tcl-p.c,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
+ * $Header: /cvs/root/Security/SecuritySNACCRuntime/Attic/tcl-p.c,v 1.1.1.1 2001/05/18 23:14:05 mb Exp $
* $Log: tcl-p.c,v $
* Revision 1.1.1.1 2001/05/18 23:14:05 mb
* Move from private repository to open source repository