From: Simon Wilkinson Date: Wed, 16 Mar 2011 15:37:47 +0000 (+0000) Subject: util: Remove itc.h X-Git-Tag: openafs-devel-1_7_1~791 X-Git-Url: https://git.openafs.org/?p=openafs.git;a=commitdiff_plain;h=79ec0068740b3dc83bd92ac5fc25749d292f1f70 util: Remove itc.h The itc.h header is never installed, or used in the OpenAFS tree. Remove it. Change-Id: Ia01f0f5353bc019c3fd0c311b2c7cfc157dca2dd Reviewed-on: http://gerrit.openafs.org/4247 Tested-by: BuildBot Reviewed-by: Derrick Brashear --- diff --git a/src/WINNT/install/wix/files.wxi b/src/WINNT/install/wix/files.wxi index 0698e3f..d1eafda 100644 --- a/src/WINNT/install/wix/files.wxi +++ b/src/WINNT/install/wix/files.wxi @@ -1521,7 +1521,6 @@ - diff --git a/src/util/NTMakefile b/src/util/NTMakefile index 0665dff..9901442 100644 --- a/src/util/NTMakefile +++ b/src/util/NTMakefile @@ -19,7 +19,6 @@ INCFILES =\ $(INCFILEDIR)\afsutil.h \ $(INCFILEDIR)\afs_assert.h \ $(INCFILEDIR)\errors.h \ - $(INCFILEDIR)\itc.h \ $(INCFILEDIR)\vice.h \ $(INCFILEDIR)\netutils.h \ $(INCFILEDIR)\pthread_glock.h \ diff --git a/src/util/itc.h b/src/util/itc.h deleted file mode 100644 index 5ade0a7..0000000 --- a/src/util/itc.h +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Copyright 2000, International Business Machines Corporation and others. - * All Rights Reserved. - * - * This software has been released under the terms of the IBM Public - * License. For details, see the LICENSE file in the top-level source - * directory or online at http://www.openafs.org/dl/license10.html - */ - -/* itc.h - ITC standard header file - * - * defines a few constants used throughout ITC code - * - */ - -#ifndef _ITC -#define _ITC - -/* C language patches */ -typedef int boolean; -#define private static - -/* parameter usage description tags */ -#define in -#define out -#define inout - -/* very commonly used values */ -#define TRUE 1 -#define FALSE 0 - -#endif /* _ITC */