summaryrefslogtreecommitdiff
path: root/pfinet/linux/malloc.h
blob: 0693065943ddc2c23eec2d28a5047591af57173b (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef _HACK_MALLOC_H_
#define _HACK_MALLOC_H_

#include <linux/mm.h>

#define kfree_s(a,b) (free (a))
#define kfree(a) (free (a))
#define kmalloc(a,b) (malloc (a))

#endif