a53c8fab3f
Remove the file name from the comment at top of many files. In most cases the file name was wrong anyway, so it's rather pointless. Also unify the IBM copyright statement. We did have a lot of sightly different statements and wanted to change them one after another whenever a file gets touched. However that never happened. Instead people start to take the old/"wrong" statements to use as a template for new files. So unify all of them in one go. Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
22 lines
825 B
C
22 lines
825 B
C
/*
|
|
* Copyright IBM Corp. 2007
|
|
*
|
|
*/
|
|
|
|
#ifndef __ARCH_S390_LIB_UACCESS_H
|
|
#define __ARCH_S390_LIB_UACCESS_H
|
|
|
|
extern size_t copy_from_user_std(size_t, const void __user *, void *);
|
|
extern size_t copy_to_user_std(size_t, void __user *, const void *);
|
|
extern size_t strnlen_user_std(size_t, const char __user *);
|
|
extern size_t strncpy_from_user_std(size_t, const char __user *, char *);
|
|
extern int futex_atomic_cmpxchg_std(u32 *, u32 __user *, u32, u32);
|
|
extern int futex_atomic_op_std(int, u32 __user *, int, int *);
|
|
|
|
extern size_t copy_from_user_pt(size_t, const void __user *, void *);
|
|
extern size_t copy_to_user_pt(size_t, void __user *, const void *);
|
|
extern int futex_atomic_op_pt(int, u32 __user *, int, int *);
|
|
extern int futex_atomic_cmpxchg_pt(u32 *, u32 __user *, u32, u32);
|
|
|
|
#endif /* __ARCH_S390_LIB_UACCESS_H */
|