diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2017-04-20 16:31:10 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2017-04-20 16:31:28 -0400 |
commit | 77c316be7e6950990f21ba58f78ce67db1950fa9 (patch) | |
tree | 878c66bc00c19de7a6e7ff332a7aaccf41880b0a | |
parent | 919f6d746e45c8fe84d02799053ef47c3bb11050 (diff) | |
download | postgresql-77c316be7e6950990f21ba58f78ce67db1950fa9.tar.gz postgresql-77c316be7e6950990f21ba58f78ce67db1950fa9.zip |
Add missing erand48.c to libpq/.gitignore.
Oversight in commit 818fd4a67. While at it, sync order of file list
in .gitignore with those in the Makefile.
-rw-r--r-- | src/interfaces/libpq/.gitignore | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/src/interfaces/libpq/.gitignore b/src/interfaces/libpq/.gitignore index 3829a4b008f..6c02dc70551 100644 --- a/src/interfaces/libpq/.gitignore +++ b/src/interfaces/libpq/.gitignore @@ -1,31 +1,33 @@ /exports.list -/base64.c +/libpq.rc +# .c files that are symlinked in from elsewhere /chklocale.c /crypt.c +/erand48.c /getaddrinfo.c /getpeereid.c /inet_aton.c /inet_net_ntop.c /noblock.c /open.c +/system.c +/pgsleep.c /pg_strong_random.c /pgstrcasecmp.c /pqsignal.c -/saslprep.c -/scram-common.c -/sha2.c -/sha2_openssl.c /snprintf.c /strerror.c /strlcpy.c -/system.c /thread.c -/unicode_norm.c /win32error.c /win32setlocale.c -/pgsleep.c -/md5.c /ip.c +/md5.c +/base64.c +/scram-common.c +/sha2.c +/sha2_openssl.c +/saslprep.c +/unicode_norm.c /encnames.c /wchar.c -/libpq.rc |