GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / um / drivers / cow_sys.h
blobf5701fd2ef90b2d8d1964c3222ebb155c2594ec1
1 #ifndef __COW_SYS_H__
2 #define __COW_SYS_H__
4 #include "kern_util.h"
5 #include "os.h"
6 #include "user.h"
7 #include "um_malloc.h"
9 static inline void *cow_malloc(int size)
11 return uml_kmalloc(size, UM_GFP_KERNEL);
14 static inline void cow_free(void *ptr)
16 kfree(ptr);
19 #define cow_printf printk
21 static inline char *cow_strdup(char *str)
23 return uml_strdup(str);
26 static inline int cow_seek_file(int fd, __u64 offset)
28 return os_seek_file(fd, offset);
31 static inline int cow_file_size(char *file, unsigned long long *size_out)
33 return os_file_size(file, size_out);
36 static inline int cow_write_file(int fd, void *buf, int size)
38 return os_write_file(fd, buf, size);
41 #endif