|
1 | 1 | /*
|
| 2 | + * |
| 3 | + * This inet_aton() function was taken from the GNU C library and |
| 4 | + * incorporated into Postgres for those systems which do not have this |
| 5 | + * routine in their standard C libraries. |
| 6 | + * |
| 7 | + * The function was been extracted whole from the file inet_aton.c in |
| 8 | + * Release 5.3.12 of the Linux C library, which is derived from the |
| 9 | + * GNU C library, by Bryan Henderson in October 1996. The copyright |
| 10 | + * notice from that file is below. |
| 11 | + */ |
2 | 12 |
|
3 |
| - This inet_aton() function was taken from the GNU C library and |
4 |
| - incorporated into Postgres for those systems which do not have this |
5 |
| - routine in their standard C libraries. |
6 |
| -
|
7 |
| - The function was been extracted whole from the file inet_aton.c in |
8 |
| - Release 5.3.12 of the Linux C library, which is derived from the |
9 |
| - GNU C library, by Bryan Henderson in October 1996. The copyright |
10 |
| - notice from that file is below. |
11 |
| -*/ |
12 | 13 | /*
|
13 | 14 | * Copyright (c) 1983, 1990, 1993
|
14 | 15 | *The Regents of the University of California. All rights reserved.
|
|