diff options
author | Bruce Momjian <bruce@momjian.us> | 2006-07-10 22:06:11 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2006-07-10 22:06:11 +0000 |
commit | c5133e5920a802201824effd13f16f606b8d6971 (patch) | |
tree | 29ddcb573460f83cd2705bdfdf7023cbdc4c631d /contrib/userlock/user_locks.h | |
parent | f0cd7647234b028d25cfd53c9376320e0ef9799b (diff) | |
download | postgresql-c5133e5920a802201824effd13f16f606b8d6971.tar.gz |
Allow /contrib include files to compile on their own.
Diffstat (limited to 'contrib/userlock/user_locks.h')
-rw-r--r-- | contrib/userlock/user_locks.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/contrib/userlock/user_locks.h b/contrib/userlock/user_locks.h index e00735d693..f7cdc89a09 100644 --- a/contrib/userlock/user_locks.h +++ b/contrib/userlock/user_locks.h @@ -1,6 +1,8 @@ #ifndef USER_LOCKS_H #define USER_LOCKS_H +#include "storage/lock.h" + extern int user_lock(uint32 id1, uint32 id2, LOCKMODE lockmode); extern int user_unlock(uint32 id1, uint32 id2, LOCKMODE lockmode); extern int user_write_lock(uint32 id1, uint32 id2); |