GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / tools / perf / util / include / asm / uaccess.h
blobd0f72b8fcc355b550fa9bb4091fc6fba27644ef3
1 #ifndef _PERF_ASM_UACCESS_H_
2 #define _PERF_ASM_UACCESS_H_
4 #define __get_user(src, dest) \
5 ({ \
6 (src) = *dest; \
7 0; \
8 })
10 #define get_user __get_user
12 #define access_ok(type, addr, size) 1
14 #endif