diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-07-25 00:22:19 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-07-25 00:22:19 +0000 |
commit | 0864a2ddaedbf4da0837cfa84b6dd012a097cef8 (patch) | |
tree | e07d882f291ee16240aabfc487f23475e22f750b | |
parent | 0ede7ca8197544fbf9f6416294944c1acbe04db5 (diff) | |
download | postgresql-0864a2ddaedbf4da0837cfa84b6dd012a097cef8.tar.gz postgresql-0864a2ddaedbf4da0837cfa84b6dd012a097cef8.zip |
Fix compiler not finding libpgtcl.h header file
-rw-r--r-- | src/bin/pgtclsh/pgtclAppInit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pgtclsh/pgtclAppInit.c b/src/bin/pgtclsh/pgtclAppInit.c index a4ee17a0323..acdce124f8d 100644 --- a/src/bin/pgtclsh/pgtclAppInit.c +++ b/src/bin/pgtclsh/pgtclAppInit.c @@ -17,7 +17,7 @@ static char sccsid[] = "@(#) tclAppInit.c 1.11 94/12/17 16:14:03"; #include "tcl.h" -#include "libpgtcl.h" +#include <libpgtcl.h> /* * The following variable is a special hack that is needed in order for |