diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-07-17 04:12:10 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-07-17 04:12:10 +0000 |
commit | 8f5561a0d96b110c593dab2b11ff08fd2ba826d7 (patch) | |
tree | 729bb7945c2a757b6373a6cd5ae4531d09402290 /src/backend | |
parent | fbe4ad21540db2858032a2069c45d021c86a5596 (diff) | |
download | postgresql-8f5561a0d96b110c593dab2b11ff08fd2ba826d7.tar.gz postgresql-8f5561a0d96b110c593dab2b11ff08fd2ba826d7.zip |
More config.h cleanups.
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/port/inet_aton.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/port/inet_aton.c b/src/backend/port/inet_aton.c index 2922c137caa..485772619c9 100644 --- a/src/backend/port/inet_aton.c +++ b/src/backend/port/inet_aton.c @@ -1,4 +1,4 @@ -/* $Id: inet_aton.c,v 1.16 1999/02/07 22:07:02 tgl Exp $ +/* $Id: inet_aton.c,v 1.17 1999/07/17 04:12:09 momjian Exp $ * * This inet_aton() function was taken from the GNU C library and * incorporated into Postgres for those systems which do not have this @@ -42,12 +42,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ -#include "config.h" - #include <sys/types.h> #include <netinet/in.h> #include <ctype.h> +#include "config.h" + /* * Check whether "cp" is a valid ascii representation * of an Internet address and convert to a binary address. |