Linux Audio

Check our new training course

Embedded Linux Audio

Check our new training course
with Creative Commons CC-BY-SA
lecture materials

Bootlin logo

Elixir Cross Referencer

Loading...
#ifndef _LINUX_MALLOC_H
#define _LINUX_MALLOC_H

#include <linux/mm.h>

void * kmalloc(unsigned int size, int priority);
void kfree(void * obj);

#define kfree_s(a,b) kfree(a)

#endif /* _LINUX_MALLOC_H */