diff options
author | Bruce Momjian | 2000-06-08 22:38:00 +0000 |
---|---|---|
committer | Bruce Momjian | 2000-06-08 22:38:00 +0000 |
commit | 20ad43b576d9360b0e9ce9bd868c989443cf9d36 (patch) | |
tree | 6cdf8d6fb7e1e229158000234ff32a426447a53f /src/include/commands/comment.h | |
parent | 5690933d6c14a706b52edf76c71cbf5660b110e1 (diff) |
Mark functions as static and ifdef NOT_USED as appropriate.
Diffstat (limited to 'src/include/commands/comment.h')
-rw-r--r-- | src/include/commands/comment.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/include/commands/comment.h b/src/include/commands/comment.h index 7f400411b4e..c9a5b63821f 100644 --- a/src/include/commands/comment.h +++ b/src/include/commands/comment.h @@ -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 */ |