diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2016-03-24 18:27:28 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2016-03-24 18:27:28 -0400 |
commit | d65bea26a867e3bbd053bf87b985b0e113256414 (patch) | |
tree | 8fa168647280f88424cd536b6215ccf0ce469bb3 /src/bin/scripts/createlang.c | |
parent | a376960c8f8ec08783e1c529f36fbeb60236b378 (diff) | |
download | postgresql-d65bea26a867e3bbd053bf87b985b0e113256414.tar.gz postgresql-d65bea26a867e3bbd053bf87b985b0e113256414.zip |
Move psql's print.c and mbprint.c into src/fe_utils.
Just turning the crank ...
Diffstat (limited to 'src/bin/scripts/createlang.c')
-rw-r--r-- | src/bin/scripts/createlang.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/scripts/createlang.c b/src/bin/scripts/createlang.c index ad298c97f5a..f4eb0797f00 100644 --- a/src/bin/scripts/createlang.c +++ b/src/bin/scripts/createlang.c @@ -12,7 +12,7 @@ #include "postgres_fe.h" #include "common.h" -#include "print.h" +#include "fe_utils/print.h" static void help(const char *progname); |