diff options
author | Dan Nicholson <dbn.lists@gmail.com> | 2009-06-18 08:52:47 -0700 |
---|---|---|
committer | Dan Nicholson <dbn.lists@gmail.com> | 2009-06-24 06:23:44 -0700 |
commit | 1eafe8b65abaab94037f93196ec1512ab822b858 (patch) | |
tree | 56f13167adaacffcbe9d0942703d8c788907ac25 /src/tet3/tcclib | |
parent | 1ead05eb9ecf545b60ea6508a91414662e706033 (diff) |
Add config.h headers to all C files and mc stubs
This should allow the autoconf defines to be used consistently.
Diffstat (limited to 'src/tet3/tcclib')
-rw-r--r-- | src/tet3/tcclib/lockfile.c | 4 | ||||
-rw-r--r-- | src/tet3/tcclib/lsdir.c | 4 | ||||
-rw-r--r-- | src/tet3/tcclib/mktmpdir.c | 4 | ||||
-rw-r--r-- | src/tet3/tcclib/procdir.c | 4 | ||||
-rw-r--r-- | src/tet3/tcclib/rmrf.c | 4 | ||||
-rw-r--r-- | src/tet3/tcclib/sharlock.c | 4 | ||||
-rw-r--r-- | src/tet3/tcclib/tcfexec.c | 4 |
7 files changed, 28 insertions, 0 deletions
diff --git a/src/tet3/tcclib/lockfile.c b/src/tet3/tcclib/lockfile.c index ebfc68fe..1a033ca5 100644 --- a/src/tet3/tcclib/lockfile.c +++ b/src/tet3/tcclib/lockfile.c @@ -17,6 +17,10 @@ * the UK and other countries. */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #ifndef lint static char sccsid[] = "@(#)lockfile.c 1.2 (97/07/21) TET3 release 3.3"; #endif diff --git a/src/tet3/tcclib/lsdir.c b/src/tet3/tcclib/lsdir.c index cd8c573e..5d168730 100644 --- a/src/tet3/tcclib/lsdir.c +++ b/src/tet3/tcclib/lsdir.c @@ -17,6 +17,10 @@ * the UK and other countries. */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #ifndef lint static char sccsid[] = "@(#)lsdir.c 1.4 (99/07/07) TETware release 3.4"; #endif diff --git a/src/tet3/tcclib/mktmpdir.c b/src/tet3/tcclib/mktmpdir.c index f84ff74a..27388856 100644 --- a/src/tet3/tcclib/mktmpdir.c +++ b/src/tet3/tcclib/mktmpdir.c @@ -17,6 +17,10 @@ * the UK and other countries. */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #ifndef lint static char sccsid[] = "@(#)mktmpdir.c 1.3 (98/09/01) TET3 release 3.3"; #endif diff --git a/src/tet3/tcclib/procdir.c b/src/tet3/tcclib/procdir.c index 5aa5e36e..27465420 100644 --- a/src/tet3/tcclib/procdir.c +++ b/src/tet3/tcclib/procdir.c @@ -17,6 +17,10 @@ * the UK and other countries. */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #ifndef lint static char sccsid[] = "@(#)procdir.c 1.5 (98/09/01) TET3 release 3.3"; #endif diff --git a/src/tet3/tcclib/rmrf.c b/src/tet3/tcclib/rmrf.c index f9afe568..fe7661fa 100644 --- a/src/tet3/tcclib/rmrf.c +++ b/src/tet3/tcclib/rmrf.c @@ -17,6 +17,10 @@ * the UK and other countries. */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #ifndef lint static char sccsid[] = "@(#)rmrf.c 1.4 (98/09/01) TET3 release 3.3"; #endif diff --git a/src/tet3/tcclib/sharlock.c b/src/tet3/tcclib/sharlock.c index b848c24b..f3652399 100644 --- a/src/tet3/tcclib/sharlock.c +++ b/src/tet3/tcclib/sharlock.c @@ -17,6 +17,10 @@ * the UK and other countries. */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #ifndef lint static char sccsid[] = "@(#)sharlock.c 1.3 (98/02/24) TET3 release 3.3"; #endif diff --git a/src/tet3/tcclib/tcfexec.c b/src/tet3/tcclib/tcfexec.c index 6ff9ba14..aade9f91 100644 --- a/src/tet3/tcclib/tcfexec.c +++ b/src/tet3/tcclib/tcfexec.c @@ -17,6 +17,10 @@ * the UK and other countries. */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #ifndef lint static char sccsid[] = "@(#)tcfexec.c 1.6 (98/09/01) TET3 release 3.3"; #endif |