diff options
author | Rao Shoaib <Rao.Shoaib@Sun.COM> | 2009-11-11 08:45:41 -0800 |
---|---|---|
committer | Rao Shoaib <Rao.Shoaib@Sun.COM> | 2009-11-11 08:45:41 -0800 |
commit | 9525b14bcdeb5b5f6f95ab27c2f48f18bd2ec829 (patch) | |
tree | df51891a276edf456c1481f49653a76cdfedee53 /usr/src/lib/libresolv2/include/isc/tree.h | |
parent | 0324f02a004039d6377111191fdd7134452d7817 (diff) | |
download | illumos-gate-9525b14bcdeb5b5f6f95ab27c2f48f18bd2ec829.tar.gz |
6289479 libresolv2 clean up and alignment with libbind.6.0
Diffstat (limited to 'usr/src/lib/libresolv2/include/isc/tree.h')
-rw-r--r-- | usr/src/lib/libresolv2/include/isc/tree.h | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/usr/src/lib/libresolv2/include/isc/tree.h b/usr/src/lib/libresolv2/include/isc/tree.h index 384832830c..96feaca68d 100644 --- a/usr/src/lib/libresolv2/include/isc/tree.h +++ b/usr/src/lib/libresolv2/include/isc/tree.h @@ -1,17 +1,11 @@ -/* - * Copyright 2003 by Sun Microsystems, Inc. All rights reserved. - * Use is subject to license terms. - */ - /* tree.h - declare structures used by tree library * * vix 22jan93 [revisited; uses RCS, ANSI, POSIX; has bug fixes] * vix 27jun86 [broken out of tree.c] * - * $Id: tree.h,v 8.3 2002/12/03 05:26:48 marka Exp $ + * $Id: tree.h,v 1.3 2005/04/27 04:56:18 sra Exp $ */ -#pragma ident "%Z%%M% %I% %E% SMI" #ifndef _TREE_H_INCLUDED #define _TREE_H_INCLUDED @@ -25,7 +19,7 @@ # endif #endif -/* +/*% * tree_t is our package-specific anonymous pointer. */ #if defined(__STDC__) || defined(__GNUC__) @@ -34,8 +28,7 @@ typedef void *tree_t; typedef char *tree_t; #endif -#ifdef ORIGINAL_ISC_CODE -/* +/*% * Do not taint namespace */ #define tree_add __tree_add @@ -44,8 +37,7 @@ typedef char *tree_t; #define tree_mung __tree_mung #define tree_srch __tree_srch #define tree_trav __tree_trav -#else -#endif + typedef struct tree_s { tree_t data; @@ -64,3 +56,4 @@ void tree_mung __P((tree **, void (*)())); #endif /* _TREE_H_INCLUDED */ +/*! \file */ |