From: Martin Molnar Date: Wed, 10 Sep 2008 21:08:31 +0000 (+0200) Subject: Added frsh-utils.h X-Git-Url: http://rtime.felk.cvut.cz/gitweb/frescor/fwp.git/commitdiff_plain/5813ff59fd964f5ab455af4033783d8f21c2533d Added frsh-utils.h --- diff --git a/frsh/frsh_utils.h b/frsh/frsh_utils.h new file mode 100644 index 0000000..c3d62ff --- /dev/null +++ b/frsh/frsh_utils.h @@ -0,0 +1,9 @@ +#ifndef FRSH_UTILS_H +#define FRSH_UTILS_H + +#include + +#define frsh_malloc(size) malloc(size) +#define frsh_free(ptr) free(ptr) + +#endif