diff options
author | David Robillard <d@drobilla.net> | 2015-11-06 23:04:22 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-11-06 23:04:22 -0500 |
commit | f4bccc3d667726fb2c9e70f55a0e83bd8fb65e70 (patch) | |
tree | 5a51e4f340a3121772c1b5bdcae99d6d4655df63 /src/resp.hpp | |
parent | da4c2dc337252d21d1ceea3f32c61620a5b6e4f4 (diff) | |
download | resp-f4bccc3d667726fb2c9e70f55a0e83bd8fb65e70.tar.gz resp-f4bccc3d667726fb2c9e70f55a0e83bd8fb65e70.tar.bz2 resp-f4bccc3d667726fb2c9e70f55a0e83bd8fb65e70.zip |
Fix undeclared function warnings
Diffstat (limited to 'src/resp.hpp')
-rw-r--r-- | src/resp.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/resp.hpp b/src/resp.hpp index 90a0efa..9179b16 100644 --- a/src/resp.hpp +++ b/src/resp.hpp @@ -79,6 +79,8 @@ typedef void* CFunc; ///< Compiled function (opaque) * Garbage Collection * ***************************************************************************/ +extern "C" { void* __resp_alloc(unsigned size); } + struct Object; /// Type tag for an AST node (must be even and > 1 since LSb is used as mark) |