2 * Copyright (C) 2005 Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
3 * Licensed under the GPL
6 #ifndef __UM_MALLOC_H__
7 #define __UM_MALLOC_H__
9 extern void *um_kmalloc(int size
);
10 extern void *um_kmalloc_atomic(int size
);
11 extern void kfree(const void *ptr
);
13 extern void *um_vmalloc(int size
);
14 extern void vfree(void *ptr
);
16 #endif /* __UM_MALLOC_H__ */