Sign in
opensecura
/
3p
/
nicta
/
cogent
/
8a35eea7a1f65b9ba9006567c2703aab20dfaf43
/
.
/
impl
/
fs
/
bilby
/
quickcheck
/
wa_example
/
adt.h
blob: 84336d402c5e1d5915a566b602d46f0c8ad50634 [
file
]
#ifndef
ADT_H__
#define
ADT_H__
#include
<stdlib.h>
#include
<string.h>
#define
kmalloc
(
size
)
malloc
(
size
)
#define
kzalloc
(
size
)
calloc
(
size
,
sizeof
(
char
))
#define
kfree
(
obj
)
free
(
obj
)
struct
semaphore
{
int
dummy
;
};
#endif
/* ADT_H__ */