1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-22 21:53:06 +03:00

Mark functions as static and ifdef NOT_USED as appropriate.

This commit is contained in:
Bruce Momjian
2000-06-08 22:38:00 +00:00
parent 5690933d6c
commit 20ad43b576
55 changed files with 188 additions and 175 deletions

View File

@@ -23,9 +23,8 @@
*------------------------------------------------------------------
*/
void CreateComments(Oid oid, char *comment);
void DeleteComments(Oid oid);
void CommentObject(int objtype, char *objname, char *objproperty,
List *objlist, char *comment);
extern void DeleteComments(Oid oid);
extern void CommentObject(int objtype, char *objname, char *objproperty,
List *objlist, char *comment);
#endif /* COMMENT_H */