1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-18 02:02:55 +03:00

Goodbye register keyword. Compiler knows better.

This commit is contained in:
Bruce Momjian
1998-02-11 19:14:04 +00:00
parent df10360d8e
commit 24cab6bd0d
50 changed files with 494 additions and 500 deletions

View File

@@ -1,4 +1,4 @@
/* $Id: inet_aton.c,v 1.12 1998/01/23 19:13:14 scrappy Exp $
/* $Id: inet_aton.c,v 1.13 1998/02/11 19:11:05 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
@@ -56,12 +56,12 @@
int
inet_aton(const char *cp, struct in_addr * addr)
{
register unsigned int val;
register int base,
unsigned int val;
int base,
n;
register char c;
char c;
u_int parts[4];
register u_int *pp = parts;
u_int *pp = parts;
for (;;)
{