]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/um/include/um_malloc.h
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/shaggy...
[mirror_ubuntu-artful-kernel.git] / arch / um / include / um_malloc.h
CommitLineData
c13e5690
PBG
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
e4c4bf99
JD
9#include "kern_constants.h"
10
43f5b308 11extern void *uml_kmalloc(int size, int flags);
c13e5690
PBG
12extern void kfree(const void *ptr);
13
e4c4bf99 14extern void *vmalloc(unsigned long size);
c13e5690
PBG
15extern void vfree(void *ptr);
16
17#endif /* __UM_MALLOC_H__ */
43f5b308
JD
18
19