diff options
author | Peter Eisentraut | 2001-08-24 14:07:50 +0000 |
---|---|---|
committer | Peter Eisentraut | 2001-08-24 14:07:50 +0000 |
commit | 968d7733a19cda3db16947024bd335d877b3d9c3 (patch) | |
tree | a39593b292dbfcaad45924e9a20ae90300167524 /src/backend/port/inet_aton.c | |
parent | 7326e78c4249393359edce09f555aaa049be2a80 (diff) |
Rename config.h to pg_config.h and os.h to pg_config_os.h, fix a number of
places that were including the wrong files.
Diffstat (limited to 'src/backend/port/inet_aton.c')
-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 b6cd4974393..81f20da9672 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.18 2000/12/03 20:45:34 tgl Exp $ +/* $Id: inet_aton.c,v 1.19 2001/08/24 14:07:49 petere 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 "c.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. |