diff options
author | Bruce Momjian <bruce@momjian.us> | 2014-01-10 18:03:28 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2014-01-10 18:03:28 -0500 |
commit | 111022eac64579cc12d20e33146ce01717562b29 (patch) | |
tree | b09e0eef58f48860ca2e97a10ca6f9260f4fb706 /src/bin/psql/help.c | |
parent | 423e1211a86df0d0dd8914223137edbfd4d52400 (diff) | |
download | postgresql-111022eac64579cc12d20e33146ce01717562b29.tar.gz postgresql-111022eac64579cc12d20e33146ce01717562b29.zip |
Move username lookup functions from /port to /common
Per suggestion from Peter E and Alvaro
Diffstat (limited to 'src/bin/psql/help.c')
-rw-r--r-- | src/bin/psql/help.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index d7c31e0b1b4..baa94175ea1 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -23,6 +23,7 @@ #endif #include "common.h" +#include "common/username.h" #include "help.h" #include "input.h" #include "settings.h" |