Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[cascardo/linux.git] / arch / um / include / um_malloc.h
1 /*
2  * Copyright (C) 2005 Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
3  * Licensed under the GPL
4  */
5
6 #ifndef __UM_MALLOC_H__
7 #define __UM_MALLOC_H__
8
9 extern void *um_kmalloc(int size);
10 extern void *um_kmalloc_atomic(int size);
11 extern void kfree(const void *ptr);
12
13 extern void *um_vmalloc(int size);
14 extern void vfree(void *ptr);
15
16 #endif /* __UM_MALLOC_H__ */