diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-11-14 20:27:06 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-11-14 20:27:06 +0000 |
commit | 2081153e6986ebd7b56fe5f6b5b58f08ea750551 (patch) | |
tree | af61dcf7dd0072ecaf9bfb833b398698fcf60a33 /src | |
parent | d84057db71fe86ff2d2fabc5bcf6cee6cdb24c39 (diff) | |
download | postgresql-2081153e6986ebd7b56fe5f6b5b58f08ea750551.tar.gz postgresql-2081153e6986ebd7b56fe5f6b5b58f08ea750551.zip |
Fix a comment...was going to fix the <sys/types.h> problem, but
Randy is submitting a more comprehensive patch :)
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/port/inet_aton.c | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/src/backend/port/inet_aton.c b/src/backend/port/inet_aton.c index fe9e25a14e1..1b08e7eaa7b 100644 --- a/src/backend/port/inet_aton.c +++ b/src/backend/port/inet_aton.c @@ -1,14 +1,15 @@ /* + * + * This inet_aton() function was taken from the GNU C library and + * incorporated into Postgres for those systems which do not have this + * routine in their standard C libraries. + * + * The function was been extracted whole from the file inet_aton.c in + * Release 5.3.12 of the Linux C library, which is derived from the + * GNU C library, by Bryan Henderson in October 1996. The copyright + * notice from that file is below. + */ - This inet_aton() function was taken from the GNU C library and - incorporated into Postgres for those systems which do not have this - routine in their standard C libraries. - - The function was been extracted whole from the file inet_aton.c in - Release 5.3.12 of the Linux C library, which is derived from the - GNU C library, by Bryan Henderson in October 1996. The copyright - notice from that file is below. -*/ /* * Copyright (c) 1983, 1990, 1993 * The Regents of the University of California. All rights reserved. |