1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-24 01:29:19 +03:00

Missed a few files from Todd's patch...oops :)

This commit is contained in:
Marc G. Fournier
1997-12-04 00:34:01 +00:00
parent 4c04f7724e
commit a91ad1af09
4 changed files with 598 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
/*-------------------------------------------------------------------------
*
* user.h--
*
*
*
*
*-------------------------------------------------------------------------
*/
#ifndef USER_H
#define USER_H
extern void DefineUser(CreateUserStmt *stmt);
extern void AlterUser(AlterUserStmt *stmt);
extern void RemoveUser(char* user);
#endif /* USER_H */