From: Pascal Stumpf Date: Sun, 12 Aug 2012 14:41:42 +0000 (+0200) Subject: Get rid of malloc.h. X-Git-Tag: 2.2.0b~83^2~10 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0bbd4ff9aa6be56a592e7d266b878f66e27b1afc;p=oweals%2Fcde.git Get rid of malloc.h. This is a non-POSIX/ISO-C header. It is ok to include this on Linux, but it is obsolete on BSD; FreeBSD even throws an error if you include it with __STDC__ defined. Every system should nowadays have malloc() defined in stdlib.h. Diff is largely mechanical, replacing malloc.h with stdlib.h where it is not yet included anyway. --- diff --git a/cde/lib/DtHelp/GifUtils.c b/cde/lib/DtHelp/GifUtils.c index 4badc9a0..f0a78c44 100644 --- a/cde/lib/DtHelp/GifUtils.c +++ b/cde/lib/DtHelp/GifUtils.c @@ -67,7 +67,7 @@ /* include files */ #include #include -#include +#include #include #include #include diff --git a/cde/lib/DtHelp/Graphics.c b/cde/lib/DtHelp/Graphics.c index 7f54109d..7631c766 100644 --- a/cde/lib/DtHelp/Graphics.c +++ b/cde/lib/DtHelp/Graphics.c @@ -85,7 +85,6 @@ static char rcs_id[]="$XConsortium: Graphics.c /main/23 1996/12/06 11:12:54 cde- #include #include #include -#include #include #include #include diff --git a/cde/lib/DtHelp/JpegUtils.c b/cde/lib/DtHelp/JpegUtils.c index 9fd96c3d..59ef9dae 100644 --- a/cde/lib/DtHelp/JpegUtils.c +++ b/cde/lib/DtHelp/JpegUtils.c @@ -42,7 +42,7 @@ */ #include -#include +#include #include #include #include diff --git a/cde/lib/DtHelp/il/ilhplrotation.c b/cde/lib/DtHelp/il/ilhplrotation.c index 05d5e87f..c05024c8 100644 --- a/cde/lib/DtHelp/il/ilhplrotation.c +++ b/cde/lib/DtHelp/il/ilhplrotation.c @@ -41,8 +41,7 @@ static char version[] = "$XConsortium: ilhplrotation.c /main/3 1995/10/23 15:48: static char vdate[] = "$XConsortium: ilhplrotation.c /main/3 1995/10/23 15:48:35 rswiston $"; # include -# include -/*# include */ +# include # include # include /* Get definition of */ # include /* FLX_MAX */ diff --git a/cde/lib/DtSvc/DtUtil1/DbReader.c b/cde/lib/DtSvc/DtUtil1/DbReader.c index 5916da64..e6ac28ee 100644 --- a/cde/lib/DtSvc/DtUtil1/DbReader.c +++ b/cde/lib/DtSvc/DtUtil1/DbReader.c @@ -34,7 +34,7 @@ #include #include -#include +#include #include #include #include diff --git a/cde/lib/DtSvc/DtUtil1/MMDb.c b/cde/lib/DtSvc/DtUtil1/MMDb.c index c5b70b6d..50ffc591 100644 --- a/cde/lib/DtSvc/DtUtil1/MMDb.c +++ b/cde/lib/DtSvc/DtUtil1/MMDb.c @@ -32,7 +32,6 @@ #include #include -#include #include #include diff --git a/cde/lib/DtSvc/DtUtil1/intarray.c b/cde/lib/DtSvc/DtUtil1/intarray.c index 044c6252..f4e31c10 100644 --- a/cde/lib/DtSvc/DtUtil1/intarray.c +++ b/cde/lib/DtSvc/DtUtil1/intarray.c @@ -26,7 +26,7 @@ #include #include #include -#include +#include #include #include "DtHash.h" #include "DtShmDb.h" diff --git a/cde/lib/DtSvc/DtUtil1/inttab.c b/cde/lib/DtSvc/DtUtil1/inttab.c index 53a7ac59..98e43668 100644 --- a/cde/lib/DtSvc/DtUtil1/inttab.c +++ b/cde/lib/DtSvc/DtUtil1/inttab.c @@ -37,7 +37,6 @@ #include #include #include -#include #include #include "DtHash.h" #include "DtShmDb.h" diff --git a/cde/lib/DtSvc/include/codelibs/stringx.h b/cde/lib/DtSvc/include/codelibs/stringx.h index 0d878b67..346f3845 100644 --- a/cde/lib/DtSvc/include/codelibs/stringx.h +++ b/cde/lib/DtSvc/include/codelibs/stringx.h @@ -125,7 +125,7 @@ extern size_t nl_strlen(); /* __OBSOLETE */ #if defined(__cplusplus) } -#if defined(apollo) || defined(__aix) || defined(USL) || defined(__uxp__) || defined(__osf__) +#if defined(apollo) || defined(__aix) || defined(USL) || defined(__uxp__) || defined(__osf__) || defined(linux) || defined(CSRG_BASED) #include #else #include diff --git a/cde/lib/csa/convert2-4.c b/cde/lib/csa/convert2-4.c index ad7dfc26..9d321521 100644 --- a/cde/lib/csa/convert2-4.c +++ b/cde/lib/csa/convert2-4.c @@ -29,7 +29,6 @@ */ #include -#include #include #include #include "rtable2.h" diff --git a/cde/lib/csa/convert3-4.c b/cde/lib/csa/convert3-4.c index 44e45e75..7bc5c80a 100644 --- a/cde/lib/csa/convert3-4.c +++ b/cde/lib/csa/convert3-4.c @@ -29,7 +29,6 @@ */ #include -#include #include #include #include "rtable3.h" diff --git a/cde/lib/csa/convert4-2.c b/cde/lib/csa/convert4-2.c index 40a6e973..782db834 100644 --- a/cde/lib/csa/convert4-2.c +++ b/cde/lib/csa/convert4-2.c @@ -29,7 +29,6 @@ */ #include -#include #include #include #include "rtable2.h" diff --git a/cde/lib/csa/convert4-3.c b/cde/lib/csa/convert4-3.c index 5009b5b6..881fb082 100644 --- a/cde/lib/csa/convert4-3.c +++ b/cde/lib/csa/convert4-3.c @@ -29,7 +29,6 @@ */ #include -#include #include #include #include "rtable3.h" diff --git a/cde/lib/pam/libpam/pam_framework.c b/cde/lib/pam/libpam/pam_framework.c index 16737c46..8824a67d 100644 --- a/cde/lib/pam/libpam/pam_framework.c +++ b/cde/lib/pam/libpam/pam_framework.c @@ -44,7 +44,7 @@ #include #include #include -#include +#include #include #include diff --git a/cde/lib/pam/libpam/pam_framework_utils.c b/cde/lib/pam/libpam/pam_framework_utils.c index 7e69c768..4e3ff770 100644 --- a/cde/lib/pam/libpam/pam_framework_utils.c +++ b/cde/lib/pam/libpam/pam_framework_utils.c @@ -34,7 +34,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/cde/lib/tt/bin/tt_type_comp/frozen.mp_types_gram.C b/cde/lib/tt/bin/tt_type_comp/frozen.mp_types_gram.C index cbd4ec74..dcacf145 100644 --- a/cde/lib/tt/bin/tt_type_comp/frozen.mp_types_gram.C +++ b/cde/lib/tt/bin/tt_type_comp/frozen.mp_types_gram.C @@ -82,7 +82,6 @@ typedef union # define TT_STRING 290 # define TT_NUMBER 291 -#include #include #if defined (__hpux) diff --git a/cde/lib/tt/demo/CoEd/libCoEd/CoEdFile.C b/cde/lib/tt/demo/CoEd/libCoEd/CoEdFile.C index c0936d36..bce05415 100644 --- a/cde/lib/tt/demo/CoEd/libCoEd/CoEdFile.C +++ b/cde/lib/tt/demo/CoEd/libCoEd/CoEdFile.C @@ -54,7 +54,6 @@ #include #include -#include #include #include #include diff --git a/cde/lib/tt/demo/CoEd/libCoEd/CoEdSiteID.C b/cde/lib/tt/demo/CoEd/libCoEd/CoEdSiteID.C index 4b47d790..b661a805 100644 --- a/cde/lib/tt/demo/CoEd/libCoEd/CoEdSiteID.C +++ b/cde/lib/tt/demo/CoEd/libCoEd/CoEdSiteID.C @@ -53,7 +53,7 @@ */ #include -#include +#include #include "CoEdSiteID.h" CoEdSiteID:: diff --git a/cde/lib/tt/demo/CoEd/libCoEd/CoEdTextChange.C b/cde/lib/tt/demo/CoEd/libCoEd/CoEdTextChange.C index d90cb5d4..11d7667b 100644 --- a/cde/lib/tt/demo/CoEd/libCoEd/CoEdTextChange.C +++ b/cde/lib/tt/demo/CoEd/libCoEd/CoEdTextChange.C @@ -55,7 +55,6 @@ #include #include #include -#include #include #include "CoEdTextVersion.h" #include "CoEdTextChange.h" diff --git a/cde/lib/tt/demo/CoEd/libCoEd/SiteChange.C b/cde/lib/tt/demo/CoEd/libCoEd/SiteChange.C index c8315585..1af780ac 100644 --- a/cde/lib/tt/demo/CoEd/libCoEd/SiteChange.C +++ b/cde/lib/tt/demo/CoEd/libCoEd/SiteChange.C @@ -52,7 +52,7 @@ * connection with the use or performance of this software. */ -#include +#include #include #include #include diff --git a/cde/lib/tt/lib/api/c/api_storage.h b/cde/lib/tt/lib/api/c/api_storage.h index dbc03d21..88e222d2 100644 --- a/cde/lib/tt/lib/api/c/api_storage.h +++ b/cde/lib/tt/lib/api/c/api_storage.h @@ -37,7 +37,6 @@ #define _API_STORAGE_H #include -#include #include "util/tt_object.h" #include "util/tt_list.h" diff --git a/cde/lib/tt/lib/api/c/api_xdr.C b/cde/lib/tt/lib/api/c/api_xdr.C index 3d0be822..244ed9f5 100644 --- a/cde/lib/tt/lib/api/c/api_xdr.C +++ b/cde/lib/tt/lib/api/c/api_xdr.C @@ -35,13 +35,10 @@ */ #include "tt_options.h" -#if defined(OPT_BUG_SUNOS_4) && defined(__GNUG__) -# include -#endif +#include #include #include "api/c/api_xdr.h" #include -#include bool_t _tt_xdr_cstring_list(XDR *xdrs, char ***ar) diff --git a/cde/lib/tt/lib/api/dnd/ttdnd.c b/cde/lib/tt/lib/api/dnd/ttdnd.c index 378cba9d..256acb4f 100644 --- a/cde/lib/tt/lib/api/dnd/ttdnd.c +++ b/cde/lib/tt/lib/api/dnd/ttdnd.c @@ -33,7 +33,7 @@ */ #include #include -#include +#include #include "api/c/tt_c.h" #include "ttdnd.h" diff --git a/cde/lib/tt/lib/mp/mp_desktop.C b/cde/lib/tt/lib/mp/mp_desktop.C index 41198f8d..cf5a075a 100644 --- a/cde/lib/tt/lib/mp/mp_desktop.C +++ b/cde/lib/tt/lib/mp/mp_desktop.C @@ -58,7 +58,7 @@ extern "C" { extern int ioctl (int, int, ...) ; }; #include "mp/mp_desktop.h" #include "mp/mp_mp.h" #include -#include +#include #include "util/tt_gettext.h" static int parse_Xdisplay_string(_Tt_string display, diff --git a/cde/lib/tt/lib/mp/mp_mp.C b/cde/lib/tt/lib/mp/mp_mp.C index 92b9ba8e..9c07114a 100644 --- a/cde/lib/tt/lib/mp/mp_mp.C +++ b/cde/lib/tt/lib/mp/mp_mp.C @@ -46,7 +46,7 @@ #include "api/c/api_error.h" #include #include -#include +#include #include "tt_options.h" #if defined(_AIX) diff --git a/cde/lib/tt/lib/util/frozen.tt_trace_gram.c b/cde/lib/tt/lib/util/frozen.tt_trace_gram.c index 73ffe26f..a0887f88 100644 --- a/cde/lib/tt/lib/util/frozen.tt_trace_gram.c +++ b/cde/lib/tt/lib/util/frozen.tt_trace_gram.c @@ -101,7 +101,7 @@ typedef union # define _TT_TRACE_LINETERM 280 # define _TT_TRACE_PARSE_EOF 281 -#include +#include #include #include diff --git a/cde/lib/tt/lib/util/tt_new.C b/cde/lib/tt/lib/util/tt_new.C index c1fd0080..bf7f6001 100644 --- a/cde/lib/tt/lib/util/tt_new.C +++ b/cde/lib/tt/lib/util/tt_new.C @@ -37,7 +37,6 @@ #include #include -#include #include #include #include "util/tt_new.h" diff --git a/cde/lib/tt/mini_isam/isalloc.c b/cde/lib/tt/mini_isam/isalloc.c index 2b0bf9ec..a4d8f268 100644 --- a/cde/lib/tt/mini_isam/isalloc.c +++ b/cde/lib/tt/mini_isam/isalloc.c @@ -41,7 +41,7 @@ static char sccsid[] = "@(#)isalloc.c 1.3 89/07/17 Copyr 1988 Sun Micro"; */ #include "isam_impl.h" -#include +#include /* strdup is not defined in Ultrix' string.h, so it is implemented in a separate * file named strdup.ultrix.c diff --git a/cde/programs/dtappbuilder/src/libAButil/abio.c b/cde/programs/dtappbuilder/src/libAButil/abio.c index 0d456457..a1486f6e 100644 --- a/cde/programs/dtappbuilder/src/libAButil/abio.c +++ b/cde/programs/dtappbuilder/src/libAButil/abio.c @@ -69,7 +69,6 @@ #include #include #include -#include #include #include #include diff --git a/cde/programs/dtcalc/calctool.c b/cde/programs/dtcalc/calctool.c index b0d2ce9a..063f09c4 100644 --- a/cde/programs/dtcalc/calctool.c +++ b/cde/programs/dtcalc/calctool.c @@ -37,7 +37,6 @@ #include #include #include -#include #include #include #include diff --git a/cde/programs/dtcm/dtcm/props.c b/cde/programs/dtcm/dtcm/props.c index 01cc908a..4f84a7de 100644 --- a/cde/programs/dtcm/dtcm/props.c +++ b/cde/programs/dtcm/dtcm/props.c @@ -29,7 +29,6 @@ */ #include -#include #include #include #include diff --git a/cde/programs/dtcm/dtcm/props_pu.c b/cde/programs/dtcm/dtcm/props_pu.c index 5e84f364..747ca9c7 100644 --- a/cde/programs/dtcm/dtcm/props_pu.c +++ b/cde/programs/dtcm/dtcm/props_pu.c @@ -30,7 +30,6 @@ #include #include -#include #include #include #include diff --git a/cde/programs/dtcm/libDtCmP/dtfns.c b/cde/programs/dtcm/libDtCmP/dtfns.c index 3b853542..74eb7921 100644 --- a/cde/programs/dtcm/libDtCmP/dtfns.c +++ b/cde/programs/dtcm/libDtCmP/dtfns.c @@ -72,7 +72,7 @@ static char sccsid[] = "@(#)dtfns.c 1.3 94/11/07 Copyr 1993 Sun Microsystems, I #include #include #include -#include +#include #include #include #include diff --git a/cde/programs/dtfile/HelpCB.c b/cde/programs/dtfile/HelpCB.c index 0dd9e2e6..6e2f6340 100644 --- a/cde/programs/dtfile/HelpCB.c +++ b/cde/programs/dtfile/HelpCB.c @@ -58,7 +58,6 @@ #include #include #include -#include #include #include diff --git a/cde/programs/dtfile/Main.c b/cde/programs/dtfile/Main.c index caf0fc37..95c9722f 100644 --- a/cde/programs/dtfile/Main.c +++ b/cde/programs/dtfile/Main.c @@ -121,7 +121,7 @@ #include #include -#include +#include #include #ifndef sun /* don't need the nl_types.h file */ diff --git a/cde/programs/dtfile/SharedMsgs.c b/cde/programs/dtfile/SharedMsgs.c index 975d891f..2813bcbb 100644 --- a/cde/programs/dtfile/SharedMsgs.c +++ b/cde/programs/dtfile/SharedMsgs.c @@ -51,7 +51,6 @@ #include #include #include -#include #include #ifndef sun /* don't need the nl_types.h file */ #include diff --git a/cde/programs/dthelp/parser.ccdf/helpcomp/helpcomp.c b/cde/programs/dthelp/parser.ccdf/helpcomp/helpcomp.c index 1d334043..980f8852 100644 --- a/cde/programs/dthelp/parser.ccdf/helpcomp/helpcomp.c +++ b/cde/programs/dthelp/parser.ccdf/helpcomp/helpcomp.c @@ -27,7 +27,7 @@ static char *version = "$XConsortium: helpcomp.c /main/3 1995/11/08 11:10:34 rsw #include #include #include -#include +#include #include #include diff --git a/cde/programs/dthelp/parser.ccdf/htag/build/build.c b/cde/programs/dthelp/parser.ccdf/htag/build/build.c index a90d8afc..5b763728 100644 --- a/cde/programs/dthelp/parser.ccdf/htag/build/build.c +++ b/cde/programs/dthelp/parser.ccdf/htag/build/build.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Build.c contains the main procedure for program BUILD */ #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser.ccdf/htag/build/buildutl.c b/cde/programs/dthelp/parser.ccdf/htag/build/buildutl.c index 6fbf36f1..c2e88dda 100644 --- a/cde/programs/dthelp/parser.ccdf/htag/build/buildutl.c +++ b/cde/programs/dthelp/parser.ccdf/htag/build/buildutl.c @@ -29,7 +29,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Buildult.c contains the main supporting utilities for program BUILD */ -#include +#include #include "context.h" #include "build.h" #include "delim.h" diff --git a/cde/programs/dthelp/parser.ccdf/htag/build/eltree.c b/cde/programs/dthelp/parser.ccdf/htag/build/eltree.c index e55be920..9f6038d3 100644 --- a/cde/programs/dthelp/parser.ccdf/htag/build/eltree.c +++ b/cde/programs/dthelp/parser.ccdf/htag/build/eltree.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Eltree.c contains procedures that manipulate element names */ #include -#include +#include #include "build.h" /* Enters an element name into the element name tree */ diff --git a/cde/programs/dthelp/parser.ccdf/htag/build/fsa.c b/cde/programs/dthelp/parser.ccdf/htag/build/fsa.c index 8da3c808..00c99e6d 100644 --- a/cde/programs/dthelp/parser.ccdf/htag/build/fsa.c +++ b/cde/programs/dthelp/parser.ccdf/htag/build/fsa.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Fsa.c contains the procedures used by program BUILD to convert a tree representation of a content model to an FSA */ -#include +#include #include "build.h" #include "context.h" #include "delim.h" diff --git a/cde/programs/dthelp/parser.ccdf/htag/build/out.c b/cde/programs/dthelp/parser.ccdf/htag/build/out.c index 2695fffd..63eb0dbc 100644 --- a/cde/programs/dthelp/parser.ccdf/htag/build/out.c +++ b/cde/programs/dthelp/parser.ccdf/htag/build/out.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Out.c contains the procedures used by program BUILD to output results */ #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser.ccdf/htag/build/param.c b/cde/programs/dthelp/parser.ccdf/htag/build/param.c index 3329a153..f78f4e00 100644 --- a/cde/programs/dthelp/parser.ccdf/htag/build/param.c +++ b/cde/programs/dthelp/parser.ccdf/htag/build/param.c @@ -29,7 +29,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Param.c contains procedures related to parameters for program BUILD */ -#include +#include #include #include "build.h" #include "context.h" diff --git a/cde/programs/dthelp/parser.ccdf/htag/build/sref.c b/cde/programs/dthelp/parser.ccdf/htag/build/sref.c index b6bc6b19..22d45e43 100644 --- a/cde/programs/dthelp/parser.ccdf/htag/build/sref.c +++ b/cde/programs/dthelp/parser.ccdf/htag/build/sref.c @@ -26,7 +26,7 @@ /* Sref.c contains procedures related to short reference map declarations */ #include -#include +#include #include "build.h" #include "sref.h" #include "entdef.h" diff --git a/cde/programs/dthelp/parser.ccdf/htag/build/tree.c b/cde/programs/dthelp/parser.ccdf/htag/build/tree.c index 4372f95f..903c06e8 100644 --- a/cde/programs/dthelp/parser.ccdf/htag/build/tree.c +++ b/cde/programs/dthelp/parser.ccdf/htag/build/tree.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Tree.c has procedures used by BUILD to construct the tree representation of a content model */ -#include +#include #include "build.h" #include "context.h" diff --git a/cde/programs/dthelp/parser.ccdf/htag/eltdef/eltdef.c b/cde/programs/dthelp/parser.ccdf/htag/eltdef/eltdef.c index 0c75441b..12daa2a4 100644 --- a/cde/programs/dthelp/parser.ccdf/htag/eltdef/eltdef.c +++ b/cde/programs/dthelp/parser.ccdf/htag/eltdef/eltdef.c @@ -31,7 +31,7 @@ This product and information is proprietary of Tandem Computers Incorporated. #include #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser.ccdf/htag/eltdef/eltutil.c b/cde/programs/dthelp/parser.ccdf/htag/eltdef/eltutil.c index 2aa3189b..504bc37d 100644 --- a/cde/programs/dthelp/parser.ccdf/htag/eltdef/eltutil.c +++ b/cde/programs/dthelp/parser.ccdf/htag/eltdef/eltutil.c @@ -31,7 +31,7 @@ This product and information is proprietary of Tandem Computers Incorporated. #include #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser.ccdf/htag/eltdef/entity.c b/cde/programs/dthelp/parser.ccdf/htag/eltdef/entity.c index 9b82f905..b6e232fd 100644 --- a/cde/programs/dthelp/parser.ccdf/htag/eltdef/entity.c +++ b/cde/programs/dthelp/parser.ccdf/htag/eltdef/entity.c @@ -27,7 +27,7 @@ #include #include -#include +#include #include "basic.h" #include "trie.h" #include "dtdext.h" diff --git a/cde/programs/dthelp/parser.ccdf/htag/helptag/global.h b/cde/programs/dthelp/parser.ccdf/htag/helptag/global.h index 1714dc16..a44756b1 100644 --- a/cde/programs/dthelp/parser.ccdf/htag/helptag/global.h +++ b/cde/programs/dthelp/parser.ccdf/htag/helptag/global.h @@ -33,17 +33,16 @@ #define INIT(a) #endif -#include +#include #include #if defined(MSDOS) #include -#include #include #include #endif #include -#if defined(hpux) || defined(_AIX) || defined(sun) || defined(USL) || defined(__uxp__) || defined(linux) +#if defined(hpux) || defined(_AIX) || defined(sun) || defined(USL) || defined(__uxp__) || defined(linux) || defined(CSRG_BASED) #include #include #endif diff --git a/cde/programs/dthelp/parser.ccdf/htag/parser/actutil.c b/cde/programs/dthelp/parser.ccdf/htag/parser/actutil.c index 07db2f91..054c641c 100644 --- a/cde/programs/dthelp/parser.ccdf/htag/parser/actutil.c +++ b/cde/programs/dthelp/parser.ccdf/htag/parser/actutil.c @@ -31,7 +31,7 @@ This product and information is proprietary of Tandem Computers Incorporated. in the interface definition.*/ #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser.ccdf/htag/parser/delfree.c b/cde/programs/dthelp/parser.ccdf/htag/parser/delfree.c index 9073b91c..3e6b21c6 100644 --- a/cde/programs/dthelp/parser.ccdf/htag/parser/delfree.c +++ b/cde/programs/dthelp/parser.ccdf/htag/parser/delfree.c @@ -26,7 +26,7 @@ /* Versions of m_free and m_malloc for debugging. */ /**/ -#include +#include #include #include "basic.h" #include "trie.h" diff --git a/cde/programs/dthelp/parser.ccdf/htag/parser/entity.c b/cde/programs/dthelp/parser.ccdf/htag/parser/entity.c index 8d36779e..3e73f9c6 100644 --- a/cde/programs/dthelp/parser.ccdf/htag/parser/entity.c +++ b/cde/programs/dthelp/parser.ccdf/htag/parser/entity.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Entity.c contains procedures pertaining to entities */ #include -#include +#include #include #if defined(MSDOS) #include diff --git a/cde/programs/dthelp/parser.ccdf/htag/parser/error.c b/cde/programs/dthelp/parser.ccdf/htag/parser/error.c index 3b9e6717..9fc9b535 100644 --- a/cde/programs/dthelp/parser.ccdf/htag/parser/error.c +++ b/cde/programs/dthelp/parser.ccdf/htag/parser/error.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Util.c contains general utilities for program PARSER */ #include -#include +#include #include #if defined(MSDOS) #include diff --git a/cde/programs/dthelp/parser.ccdf/htag/parser/param.c b/cde/programs/dthelp/parser.ccdf/htag/parser/param.c index 11a0a56f..8a838dfb 100644 --- a/cde/programs/dthelp/parser.ccdf/htag/parser/param.c +++ b/cde/programs/dthelp/parser.ccdf/htag/parser/param.c @@ -31,7 +31,7 @@ This product and information is proprietary of Tandem Computers Incorporated. #include #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser.ccdf/htag/parser/parser.c b/cde/programs/dthelp/parser.ccdf/htag/parser/parser.c index d47e5b16..0d499ea0 100644 --- a/cde/programs/dthelp/parser.ccdf/htag/parser/parser.c +++ b/cde/programs/dthelp/parser.ccdf/htag/parser/parser.c @@ -31,7 +31,7 @@ This product and information is proprietary of Tandem Computers Incorporated. #include #include -#include +#include #include "basic.h" #include "trie.h" #include "dtdext.h" diff --git a/cde/programs/dthelp/parser.ccdf/htag/parser/parutil.c b/cde/programs/dthelp/parser.ccdf/htag/parser/parutil.c index 9356b540..de08887d 100644 --- a/cde/programs/dthelp/parser.ccdf/htag/parser/parutil.c +++ b/cde/programs/dthelp/parser.ccdf/htag/parser/parutil.c @@ -31,7 +31,7 @@ This product and information is proprietary of Tandem Computers Incorporated. #include #include -#include +#include #include #if defined(MSDOS) #include diff --git a/cde/programs/dthelp/parser.ccdf/htag/parser/scan.c b/cde/programs/dthelp/parser.ccdf/htag/parser/scan.c index ec78c241..c7d9a42e 100644 --- a/cde/programs/dthelp/parser.ccdf/htag/parser/scan.c +++ b/cde/programs/dthelp/parser.ccdf/htag/parser/scan.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Scan.c is the scanner for program PARSER */ #include -#include +#include #include #if defined(MSDOS) #include diff --git a/cde/programs/dthelp/parser.ccdf/htag/parser/struct.c b/cde/programs/dthelp/parser.ccdf/htag/parser/struct.c index 6f53b091..5c246e4e 100644 --- a/cde/programs/dthelp/parser.ccdf/htag/parser/struct.c +++ b/cde/programs/dthelp/parser.ccdf/htag/parser/struct.c @@ -32,7 +32,7 @@ This product and information is proprietary of Tandem Computers Incorporated. #include #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser.ccdf/htag/util/context.c b/cde/programs/dthelp/parser.ccdf/htag/util/context.c index 05583ab4..7423afde 100644 --- a/cde/programs/dthelp/parser.ccdf/htag/util/context.c +++ b/cde/programs/dthelp/parser.ccdf/htag/util/context.c @@ -156,7 +156,7 @@ delim.h. */ #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser.ccdf/htag/util/conutil.c b/cde/programs/dthelp/parser.ccdf/htag/util/conutil.c index c87b8a54..1119dbad 100644 --- a/cde/programs/dthelp/parser.ccdf/htag/util/conutil.c +++ b/cde/programs/dthelp/parser.ccdf/htag/util/conutil.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Conutil has utility procedures for program CONTEXT. */ #include #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser.ccdf/htag/util/fclndir.c b/cde/programs/dthelp/parser.ccdf/htag/util/fclndir.c index 020333f0..a5caae49 100644 --- a/cde/programs/dthelp/parser.ccdf/htag/util/fclndir.c +++ b/cde/programs/dthelp/parser.ccdf/htag/util/fclndir.c @@ -35,7 +35,7 @@ with an error code of 0 if the files are the same, 1 if they differ, and */ #include -#include +#include #include #if defined(MSDOS) #include diff --git a/cde/programs/dthelp/parser.ccdf/htag/util/malloc.c b/cde/programs/dthelp/parser.ccdf/htag/util/malloc.c index 6a81b8e3..82012828 100644 --- a/cde/programs/dthelp/parser.ccdf/htag/util/malloc.c +++ b/cde/programs/dthelp/parser.ccdf/htag/util/malloc.c @@ -26,7 +26,7 @@ /* Interfaces to free and malloc with optional debugging traces */ /**/ -#include +#include #include #if defined(MSDOS) #include diff --git a/cde/programs/dthelp/parser/canon1/build/build.c b/cde/programs/dthelp/parser/canon1/build/build.c index 72581b40..b3b1cdf5 100644 --- a/cde/programs/dthelp/parser/canon1/build/build.c +++ b/cde/programs/dthelp/parser/canon1/build/build.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Build.c contains the main procedure for program BUILD */ #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/canon1/build/buildutl.c b/cde/programs/dthelp/parser/canon1/build/buildutl.c index 6e38bea1..5be8b786 100644 --- a/cde/programs/dthelp/parser/canon1/build/buildutl.c +++ b/cde/programs/dthelp/parser/canon1/build/buildutl.c @@ -29,7 +29,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Buildult.c contains the main supporting utilities for program BUILD */ -#include +#include #include "context.h" #include "build.h" #include "delim.h" diff --git a/cde/programs/dthelp/parser/canon1/build/eltree.c b/cde/programs/dthelp/parser/canon1/build/eltree.c index 0938a44e..c060204d 100644 --- a/cde/programs/dthelp/parser/canon1/build/eltree.c +++ b/cde/programs/dthelp/parser/canon1/build/eltree.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Eltree.c contains procedures that manipulate element names */ #include -#include +#include #include "build.h" /* Enters an element name into the element name tree */ diff --git a/cde/programs/dthelp/parser/canon1/build/fsa.c b/cde/programs/dthelp/parser/canon1/build/fsa.c index bec42407..f687c132 100644 --- a/cde/programs/dthelp/parser/canon1/build/fsa.c +++ b/cde/programs/dthelp/parser/canon1/build/fsa.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Fsa.c contains the procedures used by program BUILD to convert a tree representation of a content model to an FSA */ -#include +#include #include "build.h" #include "context.h" #include "delim.h" diff --git a/cde/programs/dthelp/parser/canon1/build/out.c b/cde/programs/dthelp/parser/canon1/build/out.c index 8290bce8..97414f33 100644 --- a/cde/programs/dthelp/parser/canon1/build/out.c +++ b/cde/programs/dthelp/parser/canon1/build/out.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Out.c contains the procedures used by program BUILD to output results */ #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/canon1/build/param.c b/cde/programs/dthelp/parser/canon1/build/param.c index cca95c60..72dcd7ee 100644 --- a/cde/programs/dthelp/parser/canon1/build/param.c +++ b/cde/programs/dthelp/parser/canon1/build/param.c @@ -29,7 +29,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Param.c contains procedures related to parameters for program BUILD */ -#include +#include #include #include "build.h" #include "context.h" diff --git a/cde/programs/dthelp/parser/canon1/build/sref.c b/cde/programs/dthelp/parser/canon1/build/sref.c index ceb8d159..caca76dd 100644 --- a/cde/programs/dthelp/parser/canon1/build/sref.c +++ b/cde/programs/dthelp/parser/canon1/build/sref.c @@ -26,7 +26,7 @@ /* Sref.c contains procedures related to short reference map declarations */ #include -#include +#include #include "build.h" #include "sref.h" #include "entdef.h" diff --git a/cde/programs/dthelp/parser/canon1/build/tree.c b/cde/programs/dthelp/parser/canon1/build/tree.c index 3ec5dadf..8c9e0016 100644 --- a/cde/programs/dthelp/parser/canon1/build/tree.c +++ b/cde/programs/dthelp/parser/canon1/build/tree.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Tree.c has procedures used by BUILD to construct the tree representation of a content model */ -#include +#include #include "build.h" #include "context.h" diff --git a/cde/programs/dthelp/parser/canon1/eltdef/eltdef.c b/cde/programs/dthelp/parser/canon1/eltdef/eltdef.c index 89eaba53..94e79122 100644 --- a/cde/programs/dthelp/parser/canon1/eltdef/eltdef.c +++ b/cde/programs/dthelp/parser/canon1/eltdef/eltdef.c @@ -31,7 +31,7 @@ This product and information is proprietary of Tandem Computers Incorporated. #include #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/canon1/eltdef/eltutil.c b/cde/programs/dthelp/parser/canon1/eltdef/eltutil.c index 88d4a6a3..5b5a4d9d 100644 --- a/cde/programs/dthelp/parser/canon1/eltdef/eltutil.c +++ b/cde/programs/dthelp/parser/canon1/eltdef/eltutil.c @@ -31,7 +31,7 @@ This product and information is proprietary of Tandem Computers Incorporated. #include #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/canon1/eltdef/entity.c b/cde/programs/dthelp/parser/canon1/eltdef/entity.c index bfe785c8..4aa5cd1f 100644 --- a/cde/programs/dthelp/parser/canon1/eltdef/entity.c +++ b/cde/programs/dthelp/parser/canon1/eltdef/entity.c @@ -27,7 +27,7 @@ #include #include -#include +#include #include "basic.h" #include "trie.h" #include "dtdext.h" diff --git a/cde/programs/dthelp/parser/canon1/helptag/global.h b/cde/programs/dthelp/parser/canon1/helptag/global.h index 2e9e2674..fa71c5f8 100644 --- a/cde/programs/dthelp/parser/canon1/helptag/global.h +++ b/cde/programs/dthelp/parser/canon1/helptag/global.h @@ -33,12 +33,11 @@ #define INIT(a) #endif -#include +#include #include #include #if defined(MSDOS) #include -#include #include #include #endif diff --git a/cde/programs/dthelp/parser/canon1/parser/actutil.c b/cde/programs/dthelp/parser/canon1/parser/actutil.c index b937ec4b..f632f82f 100644 --- a/cde/programs/dthelp/parser/canon1/parser/actutil.c +++ b/cde/programs/dthelp/parser/canon1/parser/actutil.c @@ -31,7 +31,7 @@ This product and information is proprietary of Tandem Computers Incorporated. in the interface definition.*/ #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/canon1/parser/delfree.c b/cde/programs/dthelp/parser/canon1/parser/delfree.c index 2dcf609d..34aca5f1 100644 --- a/cde/programs/dthelp/parser/canon1/parser/delfree.c +++ b/cde/programs/dthelp/parser/canon1/parser/delfree.c @@ -26,7 +26,7 @@ /* Versions of m_free and m_malloc for debugging. */ /**/ -#include +#include #include #include "basic.h" #include "trie.h" diff --git a/cde/programs/dthelp/parser/canon1/parser/entity.c b/cde/programs/dthelp/parser/canon1/parser/entity.c index 087fa9bb..cbe876ae 100644 --- a/cde/programs/dthelp/parser/canon1/parser/entity.c +++ b/cde/programs/dthelp/parser/canon1/parser/entity.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Entity.c contains procedures pertaining to entities */ #include -#include +#include #include #if defined(MSDOS) #include diff --git a/cde/programs/dthelp/parser/canon1/parser/error.c b/cde/programs/dthelp/parser/canon1/parser/error.c index 9f7c0f9e..80374aac 100644 --- a/cde/programs/dthelp/parser/canon1/parser/error.c +++ b/cde/programs/dthelp/parser/canon1/parser/error.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Util.c contains general utilities for program PARSER */ #include -#include +#include #include #if defined(MSDOS) #include diff --git a/cde/programs/dthelp/parser/canon1/parser/param.c b/cde/programs/dthelp/parser/canon1/parser/param.c index 573af602..28488aa3 100644 --- a/cde/programs/dthelp/parser/canon1/parser/param.c +++ b/cde/programs/dthelp/parser/canon1/parser/param.c @@ -31,7 +31,7 @@ This product and information is proprietary of Tandem Computers Incorporated. #include #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/canon1/parser/parser.c b/cde/programs/dthelp/parser/canon1/parser/parser.c index 743385d8..8cecb2ce 100644 --- a/cde/programs/dthelp/parser/canon1/parser/parser.c +++ b/cde/programs/dthelp/parser/canon1/parser/parser.c @@ -25,7 +25,7 @@ #include #include -#include +#include #include "basic.h" #include "trie.h" #include "dtdext.h" diff --git a/cde/programs/dthelp/parser/canon1/parser/parutil.c b/cde/programs/dthelp/parser/canon1/parser/parutil.c index 3d4ddd05..b2a609bf 100644 --- a/cde/programs/dthelp/parser/canon1/parser/parutil.c +++ b/cde/programs/dthelp/parser/canon1/parser/parutil.c @@ -31,7 +31,7 @@ This product and information is proprietary of Tandem Computers Incorporated. #include #include -#include +#include #include #if defined(MSDOS) #include diff --git a/cde/programs/dthelp/parser/canon1/parser/scan.c b/cde/programs/dthelp/parser/canon1/parser/scan.c index 51c9a8f1..24e5c9dd 100644 --- a/cde/programs/dthelp/parser/canon1/parser/scan.c +++ b/cde/programs/dthelp/parser/canon1/parser/scan.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Scan.c is the scanner for program PARSER */ #include -#include +#include #include #if defined(MSDOS) #include diff --git a/cde/programs/dthelp/parser/canon1/parser/struct.c b/cde/programs/dthelp/parser/canon1/parser/struct.c index 20761d92..c16a9c00 100644 --- a/cde/programs/dthelp/parser/canon1/parser/struct.c +++ b/cde/programs/dthelp/parser/canon1/parser/struct.c @@ -32,7 +32,7 @@ This product and information is proprietary of Tandem Computers Incorporated. #include #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/canon1/util/context.c b/cde/programs/dthelp/parser/canon1/util/context.c index 4fa39796..ea8dd6f3 100644 --- a/cde/programs/dthelp/parser/canon1/util/context.c +++ b/cde/programs/dthelp/parser/canon1/util/context.c @@ -156,7 +156,7 @@ delim.h. */ #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/canon1/util/conutil.c b/cde/programs/dthelp/parser/canon1/util/conutil.c index e0d71c32..947cab5f 100644 --- a/cde/programs/dthelp/parser/canon1/util/conutil.c +++ b/cde/programs/dthelp/parser/canon1/util/conutil.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Conutil has utility procedures for program CONTEXT. */ #include #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/canon1/util/fclndir.c b/cde/programs/dthelp/parser/canon1/util/fclndir.c index 66a21628..ea7b99b4 100644 --- a/cde/programs/dthelp/parser/canon1/util/fclndir.c +++ b/cde/programs/dthelp/parser/canon1/util/fclndir.c @@ -35,7 +35,7 @@ with an error code of 0 if the files are the same, 1 if they differ, and */ #include -#include +#include #include #if defined(MSDOS) #include diff --git a/cde/programs/dthelp/parser/canon1/util/malloc.c b/cde/programs/dthelp/parser/canon1/util/malloc.c index 6b02080a..c633fa0b 100644 --- a/cde/programs/dthelp/parser/canon1/util/malloc.c +++ b/cde/programs/dthelp/parser/canon1/util/malloc.c @@ -26,7 +26,7 @@ /* Interfaces to free and malloc with optional debugging traces */ /**/ -#include +#include #include #if defined(MSDOS) #include diff --git a/cde/programs/dthelp/parser/pass1/build/build.c b/cde/programs/dthelp/parser/pass1/build/build.c index b42a8f9d..5c2239b2 100644 --- a/cde/programs/dthelp/parser/pass1/build/build.c +++ b/cde/programs/dthelp/parser/pass1/build/build.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Build.c contains the main procedure for program BUILD */ #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/pass1/build/buildutl.c b/cde/programs/dthelp/parser/pass1/build/buildutl.c index e330a434..cd071e2e 100644 --- a/cde/programs/dthelp/parser/pass1/build/buildutl.c +++ b/cde/programs/dthelp/parser/pass1/build/buildutl.c @@ -29,7 +29,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Buildult.c contains the main supporting utilities for program BUILD */ -#include +#include #include "context.h" #include "build.h" #include "delim.h" diff --git a/cde/programs/dthelp/parser/pass1/build/eltree.c b/cde/programs/dthelp/parser/pass1/build/eltree.c index 039f1ff1..b5c9dba2 100644 --- a/cde/programs/dthelp/parser/pass1/build/eltree.c +++ b/cde/programs/dthelp/parser/pass1/build/eltree.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Eltree.c contains procedures that manipulate element names */ #include -#include +#include #include "build.h" /* Enters an element name into the element name tree */ diff --git a/cde/programs/dthelp/parser/pass1/build/fsa.c b/cde/programs/dthelp/parser/pass1/build/fsa.c index e8e45eb3..0e9b519e 100644 --- a/cde/programs/dthelp/parser/pass1/build/fsa.c +++ b/cde/programs/dthelp/parser/pass1/build/fsa.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Fsa.c contains the procedures used by program BUILD to convert a tree representation of a content model to an FSA */ -#include +#include #include "build.h" #include "context.h" #include "delim.h" diff --git a/cde/programs/dthelp/parser/pass1/build/out.c b/cde/programs/dthelp/parser/pass1/build/out.c index 84c1ba00..7b4b3ebc 100644 --- a/cde/programs/dthelp/parser/pass1/build/out.c +++ b/cde/programs/dthelp/parser/pass1/build/out.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Out.c contains the procedures used by program BUILD to output results */ #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/pass1/build/param.c b/cde/programs/dthelp/parser/pass1/build/param.c index 1867dcae..f7250f3e 100644 --- a/cde/programs/dthelp/parser/pass1/build/param.c +++ b/cde/programs/dthelp/parser/pass1/build/param.c @@ -29,7 +29,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Param.c contains procedures related to parameters for program BUILD */ -#include +#include #include #include "build.h" #include "context.h" diff --git a/cde/programs/dthelp/parser/pass1/build/sref.c b/cde/programs/dthelp/parser/pass1/build/sref.c index 9a37fed8..1e7a6779 100644 --- a/cde/programs/dthelp/parser/pass1/build/sref.c +++ b/cde/programs/dthelp/parser/pass1/build/sref.c @@ -26,7 +26,7 @@ /* Sref.c contains procedures related to short reference map declarations */ #include -#include +#include #include "build.h" #include "sref.h" #include "entdef.h" diff --git a/cde/programs/dthelp/parser/pass1/build/tree.c b/cde/programs/dthelp/parser/pass1/build/tree.c index ecda8c95..42db89b8 100644 --- a/cde/programs/dthelp/parser/pass1/build/tree.c +++ b/cde/programs/dthelp/parser/pass1/build/tree.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Tree.c has procedures used by BUILD to construct the tree representation of a content model */ -#include +#include #include "build.h" #include "context.h" diff --git a/cde/programs/dthelp/parser/pass1/eltdef/eltdef.c b/cde/programs/dthelp/parser/pass1/eltdef/eltdef.c index 0ede426a..a4358423 100644 --- a/cde/programs/dthelp/parser/pass1/eltdef/eltdef.c +++ b/cde/programs/dthelp/parser/pass1/eltdef/eltdef.c @@ -31,7 +31,7 @@ This product and information is proprietary of Tandem Computers Incorporated. #include #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/pass1/eltdef/eltutil.c b/cde/programs/dthelp/parser/pass1/eltdef/eltutil.c index e178935c..4dfd87f8 100644 --- a/cde/programs/dthelp/parser/pass1/eltdef/eltutil.c +++ b/cde/programs/dthelp/parser/pass1/eltdef/eltutil.c @@ -31,7 +31,7 @@ This product and information is proprietary of Tandem Computers Incorporated. #include #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/pass1/eltdef/entity.c b/cde/programs/dthelp/parser/pass1/eltdef/entity.c index 0fc7c5b4..4d43047d 100644 --- a/cde/programs/dthelp/parser/pass1/eltdef/entity.c +++ b/cde/programs/dthelp/parser/pass1/eltdef/entity.c @@ -27,7 +27,7 @@ #include #include -#include +#include #include "basic.h" #include "trie.h" #include "dtdext.h" diff --git a/cde/programs/dthelp/parser/pass1/helptag/global.h b/cde/programs/dthelp/parser/pass1/helptag/global.h index c2b8c832..79947b3e 100644 --- a/cde/programs/dthelp/parser/pass1/helptag/global.h +++ b/cde/programs/dthelp/parser/pass1/helptag/global.h @@ -33,12 +33,11 @@ #define INIT(a) #endif -#include +#include #include #include #if defined(MSDOS) #include -#include #include #include #endif diff --git a/cde/programs/dthelp/parser/pass1/parser/actutil.c b/cde/programs/dthelp/parser/pass1/parser/actutil.c index 042b54c5..4e04cd9c 100644 --- a/cde/programs/dthelp/parser/pass1/parser/actutil.c +++ b/cde/programs/dthelp/parser/pass1/parser/actutil.c @@ -31,7 +31,7 @@ This product and information is proprietary of Tandem Computers Incorporated. in the interface definition.*/ #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/pass1/parser/delfree.c b/cde/programs/dthelp/parser/pass1/parser/delfree.c index 08c419d5..75927304 100644 --- a/cde/programs/dthelp/parser/pass1/parser/delfree.c +++ b/cde/programs/dthelp/parser/pass1/parser/delfree.c @@ -26,7 +26,7 @@ /* Versions of m_free and m_malloc for debugging. */ /**/ -#include +#include #include #include "basic.h" #include "trie.h" diff --git a/cde/programs/dthelp/parser/pass1/parser/entity.c b/cde/programs/dthelp/parser/pass1/parser/entity.c index ac38cc4b..49810952 100644 --- a/cde/programs/dthelp/parser/pass1/parser/entity.c +++ b/cde/programs/dthelp/parser/pass1/parser/entity.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Entity.c contains procedures pertaining to entities */ #include -#include +#include #include #if defined(MSDOS) #include diff --git a/cde/programs/dthelp/parser/pass1/parser/error.c b/cde/programs/dthelp/parser/pass1/parser/error.c index 97b977da..4eba76b5 100644 --- a/cde/programs/dthelp/parser/pass1/parser/error.c +++ b/cde/programs/dthelp/parser/pass1/parser/error.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Util.c contains general utilities for program PARSER */ #include -#include +#include #include #if defined(MSDOS) #include diff --git a/cde/programs/dthelp/parser/pass1/parser/param.c b/cde/programs/dthelp/parser/pass1/parser/param.c index 629c3223..7e9367d2 100644 --- a/cde/programs/dthelp/parser/pass1/parser/param.c +++ b/cde/programs/dthelp/parser/pass1/parser/param.c @@ -31,7 +31,7 @@ This product and information is proprietary of Tandem Computers Incorporated. #include #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/pass1/parser/parser.c b/cde/programs/dthelp/parser/pass1/parser/parser.c index f7ac25a9..d5e801dc 100644 --- a/cde/programs/dthelp/parser/pass1/parser/parser.c +++ b/cde/programs/dthelp/parser/pass1/parser/parser.c @@ -25,7 +25,7 @@ #include #include -#include +#include #include "basic.h" #include "trie.h" #include "dtdext.h" diff --git a/cde/programs/dthelp/parser/pass1/parser/parutil.c b/cde/programs/dthelp/parser/pass1/parser/parutil.c index 32587c32..8a725a8f 100644 --- a/cde/programs/dthelp/parser/pass1/parser/parutil.c +++ b/cde/programs/dthelp/parser/pass1/parser/parutil.c @@ -31,7 +31,7 @@ This product and information is proprietary of Tandem Computers Incorporated. #include #include -#include +#include #include #if defined(MSDOS) #include diff --git a/cde/programs/dthelp/parser/pass1/parser/scan.c b/cde/programs/dthelp/parser/pass1/parser/scan.c index 934118be..971193d9 100644 --- a/cde/programs/dthelp/parser/pass1/parser/scan.c +++ b/cde/programs/dthelp/parser/pass1/parser/scan.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Scan.c is the scanner for program PARSER */ #include -#include +#include #include #if defined(MSDOS) #include diff --git a/cde/programs/dthelp/parser/pass1/parser/struct.c b/cde/programs/dthelp/parser/pass1/parser/struct.c index 497b2a21..5ceeda6e 100644 --- a/cde/programs/dthelp/parser/pass1/parser/struct.c +++ b/cde/programs/dthelp/parser/pass1/parser/struct.c @@ -32,7 +32,7 @@ This product and information is proprietary of Tandem Computers Incorporated. #include #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/pass1/util/context.c b/cde/programs/dthelp/parser/pass1/util/context.c index fe35848d..03ea5724 100644 --- a/cde/programs/dthelp/parser/pass1/util/context.c +++ b/cde/programs/dthelp/parser/pass1/util/context.c @@ -156,7 +156,7 @@ delim.h. */ #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/pass1/util/conutil.c b/cde/programs/dthelp/parser/pass1/util/conutil.c index 52e85402..154a0dcb 100644 --- a/cde/programs/dthelp/parser/pass1/util/conutil.c +++ b/cde/programs/dthelp/parser/pass1/util/conutil.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Conutil has utility procedures for program CONTEXT. */ #include #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/pass1/util/fclndir.c b/cde/programs/dthelp/parser/pass1/util/fclndir.c index d5733814..2aa2b9a9 100644 --- a/cde/programs/dthelp/parser/pass1/util/fclndir.c +++ b/cde/programs/dthelp/parser/pass1/util/fclndir.c @@ -35,7 +35,7 @@ with an error code of 0 if the files are the same, 1 if they differ, and */ #include -#include +#include #include #if defined(MSDOS) #include diff --git a/cde/programs/dthelp/parser/pass1/util/malloc.c b/cde/programs/dthelp/parser/pass1/util/malloc.c index 8e90eb65..c8690b8f 100644 --- a/cde/programs/dthelp/parser/pass1/util/malloc.c +++ b/cde/programs/dthelp/parser/pass1/util/malloc.c @@ -26,7 +26,7 @@ /* Interfaces to free and malloc with optional debugging traces */ /**/ -#include +#include #include #if defined(MSDOS) #include diff --git a/cde/programs/dthelp/parser/pass2/build/build.c b/cde/programs/dthelp/parser/pass2/build/build.c index ea67e874..5b3d30cc 100644 --- a/cde/programs/dthelp/parser/pass2/build/build.c +++ b/cde/programs/dthelp/parser/pass2/build/build.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Build.c contains the main procedure for program BUILD */ #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/pass2/build/buildutl.c b/cde/programs/dthelp/parser/pass2/build/buildutl.c index dac19e7e..a2f89913 100644 --- a/cde/programs/dthelp/parser/pass2/build/buildutl.c +++ b/cde/programs/dthelp/parser/pass2/build/buildutl.c @@ -29,7 +29,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Buildult.c contains the main supporting utilities for program BUILD */ -#include +#include #include "context.h" #include "build.h" #include "delim.h" diff --git a/cde/programs/dthelp/parser/pass2/build/eltree.c b/cde/programs/dthelp/parser/pass2/build/eltree.c index 245c3734..4ad7f287 100644 --- a/cde/programs/dthelp/parser/pass2/build/eltree.c +++ b/cde/programs/dthelp/parser/pass2/build/eltree.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Eltree.c contains procedures that manipulate element names */ #include -#include +#include #include "build.h" /* Enters an element name into the element name tree */ diff --git a/cde/programs/dthelp/parser/pass2/build/fsa.c b/cde/programs/dthelp/parser/pass2/build/fsa.c index 63ec0e74..b87b8a26 100644 --- a/cde/programs/dthelp/parser/pass2/build/fsa.c +++ b/cde/programs/dthelp/parser/pass2/build/fsa.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Fsa.c contains the procedures used by program BUILD to convert a tree representation of a content model to an FSA */ -#include +#include #include "build.h" #include "context.h" #include "delim.h" diff --git a/cde/programs/dthelp/parser/pass2/build/out.c b/cde/programs/dthelp/parser/pass2/build/out.c index 1137d990..673277d7 100644 --- a/cde/programs/dthelp/parser/pass2/build/out.c +++ b/cde/programs/dthelp/parser/pass2/build/out.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Out.c contains the procedures used by program BUILD to output results */ #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/pass2/build/param.c b/cde/programs/dthelp/parser/pass2/build/param.c index d9d4dbbf..1bcbd9de 100644 --- a/cde/programs/dthelp/parser/pass2/build/param.c +++ b/cde/programs/dthelp/parser/pass2/build/param.c @@ -29,7 +29,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Param.c contains procedures related to parameters for program BUILD */ -#include +#include #include #include "build.h" #include "context.h" diff --git a/cde/programs/dthelp/parser/pass2/build/sref.c b/cde/programs/dthelp/parser/pass2/build/sref.c index 8c7e67a0..76ca9e32 100644 --- a/cde/programs/dthelp/parser/pass2/build/sref.c +++ b/cde/programs/dthelp/parser/pass2/build/sref.c @@ -26,7 +26,7 @@ /* Sref.c contains procedures related to short reference map declarations */ #include -#include +#include #include "build.h" #include "sref.h" #include "entdef.h" diff --git a/cde/programs/dthelp/parser/pass2/build/tree.c b/cde/programs/dthelp/parser/pass2/build/tree.c index f14816a5..1d4e381f 100644 --- a/cde/programs/dthelp/parser/pass2/build/tree.c +++ b/cde/programs/dthelp/parser/pass2/build/tree.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Tree.c has procedures used by BUILD to construct the tree representation of a content model */ -#include +#include #include "build.h" #include "context.h" diff --git a/cde/programs/dthelp/parser/pass2/eltdef/eltdef.c b/cde/programs/dthelp/parser/pass2/eltdef/eltdef.c index cfe42abd..5fdb8c26 100644 --- a/cde/programs/dthelp/parser/pass2/eltdef/eltdef.c +++ b/cde/programs/dthelp/parser/pass2/eltdef/eltdef.c @@ -31,7 +31,7 @@ This product and information is proprietary of Tandem Computers Incorporated. #include #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/pass2/eltdef/eltutil.c b/cde/programs/dthelp/parser/pass2/eltdef/eltutil.c index 7c693bf5..fc052f8d 100644 --- a/cde/programs/dthelp/parser/pass2/eltdef/eltutil.c +++ b/cde/programs/dthelp/parser/pass2/eltdef/eltutil.c @@ -31,7 +31,7 @@ This product and information is proprietary of Tandem Computers Incorporated. #include #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/pass2/eltdef/entity.c b/cde/programs/dthelp/parser/pass2/eltdef/entity.c index a37855e0..f1bee6e2 100644 --- a/cde/programs/dthelp/parser/pass2/eltdef/entity.c +++ b/cde/programs/dthelp/parser/pass2/eltdef/entity.c @@ -27,7 +27,7 @@ #include #include -#include +#include #include "basic.h" #include "trie.h" #include "dtdext.h" diff --git a/cde/programs/dthelp/parser/pass2/htag2/global.h b/cde/programs/dthelp/parser/pass2/htag2/global.h index 5ff444a3..3dd0417f 100644 --- a/cde/programs/dthelp/parser/pass2/htag2/global.h +++ b/cde/programs/dthelp/parser/pass2/htag2/global.h @@ -33,12 +33,11 @@ #define INIT(a) #endif -#include +#include #include #include #if defined(MSDOS) #include -#include #include #include #endif diff --git a/cde/programs/dthelp/parser/pass2/parser/actutil.c b/cde/programs/dthelp/parser/pass2/parser/actutil.c index ed1f42b4..a9adcfc3 100644 --- a/cde/programs/dthelp/parser/pass2/parser/actutil.c +++ b/cde/programs/dthelp/parser/pass2/parser/actutil.c @@ -31,7 +31,7 @@ This product and information is proprietary of Tandem Computers Incorporated. in the interface definition.*/ #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/pass2/parser/delfree.c b/cde/programs/dthelp/parser/pass2/parser/delfree.c index 6c07544b..4bb49c8e 100644 --- a/cde/programs/dthelp/parser/pass2/parser/delfree.c +++ b/cde/programs/dthelp/parser/pass2/parser/delfree.c @@ -26,7 +26,7 @@ /* Versions of m_free and m_malloc for debugging. */ /**/ -#include +#include #include #include "basic.h" #include "trie.h" diff --git a/cde/programs/dthelp/parser/pass2/parser/entity.c b/cde/programs/dthelp/parser/pass2/parser/entity.c index 3497a94b..79544ea9 100644 --- a/cde/programs/dthelp/parser/pass2/parser/entity.c +++ b/cde/programs/dthelp/parser/pass2/parser/entity.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Entity.c contains procedures pertaining to entities */ #include -#include +#include #include #if defined(MSDOS) #include diff --git a/cde/programs/dthelp/parser/pass2/parser/error.c b/cde/programs/dthelp/parser/pass2/parser/error.c index fb213125..e689f745 100644 --- a/cde/programs/dthelp/parser/pass2/parser/error.c +++ b/cde/programs/dthelp/parser/pass2/parser/error.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Util.c contains general utilities for program PARSER */ #include -#include +#include #include #if defined(MSDOS) #include diff --git a/cde/programs/dthelp/parser/pass2/parser/param.c b/cde/programs/dthelp/parser/pass2/parser/param.c index b9784565..b312070f 100644 --- a/cde/programs/dthelp/parser/pass2/parser/param.c +++ b/cde/programs/dthelp/parser/pass2/parser/param.c @@ -31,7 +31,7 @@ This product and information is proprietary of Tandem Computers Incorporated. #include #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/pass2/parser/parser.c b/cde/programs/dthelp/parser/pass2/parser/parser.c index 4cdccbb8..914954d0 100644 --- a/cde/programs/dthelp/parser/pass2/parser/parser.c +++ b/cde/programs/dthelp/parser/pass2/parser/parser.c @@ -25,7 +25,7 @@ #include #include -#include +#include #include "basic.h" #include "trie.h" #include "dtdext.h" diff --git a/cde/programs/dthelp/parser/pass2/parser/parutil.c b/cde/programs/dthelp/parser/pass2/parser/parutil.c index 65276f42..f2339ce6 100644 --- a/cde/programs/dthelp/parser/pass2/parser/parutil.c +++ b/cde/programs/dthelp/parser/pass2/parser/parutil.c @@ -31,7 +31,7 @@ This product and information is proprietary of Tandem Computers Incorporated. #include #include -#include +#include #include #if defined(MSDOS) #include diff --git a/cde/programs/dthelp/parser/pass2/parser/scan.c b/cde/programs/dthelp/parser/pass2/parser/scan.c index f2cf30de..95743f55 100644 --- a/cde/programs/dthelp/parser/pass2/parser/scan.c +++ b/cde/programs/dthelp/parser/pass2/parser/scan.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Scan.c is the scanner for program PARSER */ #include -#include +#include #include #if defined(MSDOS) #include diff --git a/cde/programs/dthelp/parser/pass2/parser/struct.c b/cde/programs/dthelp/parser/pass2/parser/struct.c index aff0f12a..0c940bd7 100644 --- a/cde/programs/dthelp/parser/pass2/parser/struct.c +++ b/cde/programs/dthelp/parser/pass2/parser/struct.c @@ -32,7 +32,7 @@ This product and information is proprietary of Tandem Computers Incorporated. #include #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/pass2/util/context.c b/cde/programs/dthelp/parser/pass2/util/context.c index 9417aefc..a59f93be 100644 --- a/cde/programs/dthelp/parser/pass2/util/context.c +++ b/cde/programs/dthelp/parser/pass2/util/context.c @@ -156,7 +156,7 @@ delim.h. */ #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/pass2/util/conutil.c b/cde/programs/dthelp/parser/pass2/util/conutil.c index 9ebc96af..842eadb0 100644 --- a/cde/programs/dthelp/parser/pass2/util/conutil.c +++ b/cde/programs/dthelp/parser/pass2/util/conutil.c @@ -30,7 +30,7 @@ This product and information is proprietary of Tandem Computers Incorporated. /* Conutil has utility procedures for program CONTEXT. */ #include #include -#include +#include #if defined(MSDOS) #include #endif diff --git a/cde/programs/dthelp/parser/pass2/util/fclndir.c b/cde/programs/dthelp/parser/pass2/util/fclndir.c index 28d4759b..fd715f56 100644 --- a/cde/programs/dthelp/parser/pass2/util/fclndir.c +++ b/cde/programs/dthelp/parser/pass2/util/fclndir.c @@ -35,7 +35,7 @@ with an error code of 0 if the files are the same, 1 if they differ, and */ #include -#include +#include #include #if defined(MSDOS) #include diff --git a/cde/programs/dthelp/parser/pass2/util/malloc.c b/cde/programs/dthelp/parser/pass2/util/malloc.c index ce47d8e7..a7be1550 100644 --- a/cde/programs/dthelp/parser/pass2/util/malloc.c +++ b/cde/programs/dthelp/parser/pass2/util/malloc.c @@ -26,7 +26,7 @@ /* Interfaces to free and malloc with optional debugging traces */ /**/ -#include +#include #include #if defined(MSDOS) #include diff --git a/cde/programs/dtinfo/DtMmdb/dti_excs/Exceptions.hh b/cde/programs/dtinfo/DtMmdb/dti_excs/Exceptions.hh index 8ff310af..754b3427 100644 --- a/cde/programs/dtinfo/DtMmdb/dti_excs/Exceptions.hh +++ b/cde/programs/dtinfo/DtMmdb/dti_excs/Exceptions.hh @@ -10,7 +10,6 @@ extern "C" { #include #include #include -#include } #ifdef EXC_DEBUG diff --git a/cde/programs/dtinfo/dtinfo/src/Basic/ParseTree.C b/cde/programs/dtinfo/dtinfo/src/Basic/ParseTree.C index ae54b534..656d5fe2 100644 --- a/cde/programs/dtinfo/dtinfo/src/Basic/ParseTree.C +++ b/cde/programs/dtinfo/dtinfo/src/Basic/ParseTree.C @@ -46,7 +46,7 @@ #include "../Prelude.h" #include -#include +#include #ifdef SUN_CPP #define InitBase(T) \ diff --git a/cde/programs/dtinfo/dtinfo/src/cgm/cgm.h b/cde/programs/dtinfo/dtinfo/src/cgm/cgm.h index fd01d256..03ea10b5 100644 --- a/cde/programs/dtinfo/dtinfo/src/cgm/cgm.h +++ b/cde/programs/dtinfo/dtinfo/src/cgm/cgm.h @@ -24,7 +24,7 @@ /* This is the module containing common definitions for all modules of */ /* the CGM Pixmap generator */ #include /* standard I/O package */ -#include +#include #include /* XLib stuff */ #include /* Xt toolkit */ #include "GraphicsP.h" diff --git a/cde/programs/dtinfo/dtinfo/src/external-api/comm.c b/cde/programs/dtinfo/dtinfo/src/external-api/comm.c index c9bd69b7..5223de31 100644 --- a/cde/programs/dtinfo/dtinfo/src/external-api/comm.c +++ b/cde/programs/dtinfo/dtinfo/src/external-api/comm.c @@ -46,7 +46,6 @@ #include #include -#include #include #include #include diff --git a/cde/programs/dtksh/dtksh.c b/cde/programs/dtksh/dtksh.c index 454a6d74..fdda16e4 100644 --- a/cde/programs/dtksh/dtksh.c +++ b/cde/programs/dtksh/dtksh.c @@ -34,7 +34,6 @@ #include #include #include -#include #define CONSTCHAR (const char *) #define TRUE 1 diff --git a/cde/programs/dtksh/xmcmds.c b/cde/programs/dtksh/xmcmds.c index 1f989db2..1a828286 100644 --- a/cde/programs/dtksh/xmcmds.c +++ b/cde/programs/dtksh/xmcmds.c @@ -31,7 +31,7 @@ #include "shell.h" #include -#include +#include #include #include #include diff --git a/cde/programs/dtmail/dtmail/MsgHndArray.hh b/cde/programs/dtmail/dtmail/MsgHndArray.hh index a486dd62..726ac99e 100644 --- a/cde/programs/dtmail/dtmail/MsgHndArray.hh +++ b/cde/programs/dtmail/dtmail/MsgHndArray.hh @@ -26,7 +26,6 @@ #if defined(USL) && (OSMAJORVERSION == 2) extern "C" { #endif -#include #if defined(USL) && (OSMAJORVERSION == 2) }; #endif diff --git a/cde/programs/dtmail/libDtMail/Common/Buffer.C b/cde/programs/dtmail/libDtMail/Common/Buffer.C index d5f5dd60..13fec632 100644 --- a/cde/programs/dtmail/libDtMail/Common/Buffer.C +++ b/cde/programs/dtmail/libDtMail/Common/Buffer.C @@ -50,7 +50,6 @@ #if defined(USL) && (OSMAJORVERSION == 2) extern "C" { #endif -#include #if defined(USL) && (OSMAJORVERSION == 2) }; #endif diff --git a/cde/programs/dtmail/libDtMail/Common/Session.C b/cde/programs/dtmail/libDtMail/Common/Session.C index 12da1015..d81434c5 100644 --- a/cde/programs/dtmail/libDtMail/Common/Session.C +++ b/cde/programs/dtmail/libDtMail/Common/Session.C @@ -60,7 +60,6 @@ #include #include #include -#include #include #include #include @@ -90,7 +89,6 @@ #if defined(USL) && (OSMAJORVERSION == 2) extern "C" { #endif -#include #if defined(USL) && (OSMAJORVERSION == 2) }; #endif