diff options
| author | Andrew Morton <akpm@osdl.org> | 2003-08-31 04:34:19 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.osdl.org> | 2003-08-31 04:34:19 -0700 |
| commit | 1097ca0aabd3e0cf7cc7f476ff6ac2e642591a19 (patch) | |
| tree | 97e27b4d5d1d961a8450013185ee5487594ecbc2 /include/linux/fs.h | |
| parent | 02488b12cd4b626c770a73df67f73c31479148ed (diff) | |
[PATCH] Fix a few declarations
extern decls in .c files are evil. Put the send_sigio(), fcntl_setlease()
and fcntl_getlease() into fs.h.
Diffstat (limited to 'include/linux/fs.h')
| -rw-r--r-- | include/linux/fs.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 108e53f176c9..936f34c469dd 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -609,6 +609,10 @@ extern int fcntl_getlk64(struct file *, struct flock64 __user *); extern int fcntl_setlk64(struct file *, unsigned int, struct flock64 __user *); #endif +extern void send_sigio(struct fown_struct *fown, int fd, int band); +extern int fcntl_setlease(unsigned int fd, struct file *filp, long arg); +extern int fcntl_getlease(struct file *filp); + /* fs/locks.c */ extern void locks_init_lock(struct file_lock *); extern void locks_copy_lock(struct file_lock *, struct file_lock *); |
