1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-05 07:21:24 +03:00

Cosmetic improvements to the timezone code: remove the use of the

'register' qualifier, make some function declarations more consistent,
and so on.
This commit is contained in:
Neil Conway
2005-06-20 08:00:51 +00:00
parent ec490f5159
commit 0b62bbe086
6 changed files with 200 additions and 201 deletions

View File

@ -3,7 +3,7 @@
* 1996-06-05 by Arthur David Olson (arthur_david_olson@nih.gov).
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/timezone/scheck.c,v 1.5 2004/05/21 20:59:10 tgl Exp $
* $PostgreSQL: pgsql/src/timezone/scheck.c,v 1.6 2005/06/20 08:00:51 neilc Exp $
*/
#include "postgres.h"
@ -14,11 +14,11 @@
char *
scheck(const char *string, const char *format)
{
register char *fbuf;
register const char *fp;
register char *tp;
register int c;
register char *result;
char *fbuf;
const char *fp;
char *tp;
int c;
char *result;
char dummy;
static char nada;