]> rtime.felk.cvut.cz Git - frescor/fwp.git/commitdiff
Added frsh-utils.h
authorMartin Molnar <molnam1@fel.cvut.cz>
Wed, 10 Sep 2008 21:08:31 +0000 (23:08 +0200)
committerMartin Molnar <molnam1@fel.cvut.cz>
Wed, 10 Sep 2008 21:08:31 +0000 (23:08 +0200)
frsh/frsh_utils.h [new file with mode: 0644]

diff --git a/frsh/frsh_utils.h b/frsh/frsh_utils.h
new file mode 100644 (file)
index 0000000..c3d62ff
--- /dev/null
@@ -0,0 +1,9 @@
+#ifndef FRSH_UTILS_H
+#define FRSH_UTILS_H
+
+#include <stdlib.h>
+
+#define frsh_malloc(size) malloc(size)
+#define frsh_free(ptr) free(ptr)
+
+#endif