diff options
author | Marc G. Fournier | 1996-10-07 03:30:40 +0000 |
---|---|---|
committer | Marc G. Fournier | 1996-10-07 03:30:40 +0000 |
commit | de466eb8f45da2db1a44716a31fcdfdf5080de16 (patch) | |
tree | 03e79e25f71226d06d1333b7adffbd6b4d97ceb9 /src/backend/include | |
parent | 257b4d090c96e6ca9b1c8e42c516090d7e7c8503 (diff) |
Mostly adding "const" keyword and making some functions static.
Submitted by: D'Arcy Cain
Diffstat (limited to 'src/backend/include')
-rw-r--r-- | src/backend/include/miscadmin.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/include/miscadmin.h b/src/backend/include/miscadmin.h index 7f8b392b734..e67691d4aad 100644 --- a/src/backend/include/miscadmin.h +++ b/src/backend/include/miscadmin.h @@ -12,7 +12,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: miscadmin.h,v 1.3 1996/09/19 20:02:53 scrappy Exp $ + * $Id: miscadmin.h,v 1.4 1996/10/07 03:28:12 scrappy Exp $ * * NOTES * some of the information in this file will be moved to @@ -186,8 +186,8 @@ extern ProcessingMode GetProcessingMode(void); /* * Prototypes for utils/init/magic.c */ -extern int DatabaseMetaGunkIsConsistent(char database[], char path[]); -extern int ValidPgVersion(char path []); -extern void SetPgVersion(char path []); +extern int DatabaseMetaGunkIsConsistent(const char *database, char *path); +extern int ValidPgVersion(const char *path); +extern void SetPgVersion(const char *path); #endif /* MISCADMIN_H */ |