diff options
Diffstat (limited to 'arch/um/include/um_uaccess.h')
-rw-r--r-- | arch/um/include/um_uaccess.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/um/include/um_uaccess.h b/arch/um/include/um_uaccess.h index 5ef311a1a394..fdfc06b85605 100644 --- a/arch/um/include/um_uaccess.h +++ b/arch/um/include/um_uaccess.h | |||
@@ -30,6 +30,10 @@ | |||
30 | extern int copy_from_user(void *to, const void __user *from, int n); | 30 | extern int copy_from_user(void *to, const void __user *from, int n); |
31 | extern int copy_to_user(void __user *to, const void *from, int n); | 31 | extern int copy_to_user(void __user *to, const void *from, int n); |
32 | 32 | ||
33 | extern int __do_copy_to_user(void *to, const void *from, int n, | ||
34 | void **fault_addr, jmp_buf **fault_catcher); | ||
35 | extern void __do_copy(void *to, const void *from, int n); | ||
36 | |||
33 | /* | 37 | /* |
34 | * strncpy_from_user: - Copy a NUL terminated string from userspace. | 38 | * strncpy_from_user: - Copy a NUL terminated string from userspace. |
35 | * @dst: Destination address, in kernel space. This buffer must be at | 39 | * @dst: Destination address, in kernel space. This buffer must be at |