diff options
author | Andrew Clayton <a.clayton@nginx.com> | 2023-08-24 11:40:58 +0100 |
---|---|---|
committer | Andrew Clayton <a.clayton@nginx.com> | 2023-08-24 11:42:23 +0100 |
commit | d1e442b3752afa0b036b2480ee4f4bc8517aa85a (patch) | |
tree | bcc13375a4f9caaf994ac8f7783ef2ffd2ad04ca | |
parent | 093f7d0810b608a398d850b1f3a7661c1a129d25 (diff) | |
download | unit-wasm-d1e442b3752afa0b036b2480ee4f4bc8517aa85a.tar.gz unit-wasm-d1e442b3752afa0b036b2480ee4f4bc8517aa85a.tar.bz2 |
libunit-wasm: Remove left over prototype from unit-wasm.h
There was a luw_destroy_ctx() function at one point and its prototype
was still in the header file...
Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
-rw-r--r-- | src/c/include/unit/unit-wasm.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/c/include/unit/unit-wasm.h b/src/c/include/unit/unit-wasm.h index 94e5848..a20ebed 100644 --- a/src/c/include/unit/unit-wasm.h +++ b/src/c/include/unit/unit-wasm.h @@ -162,7 +162,6 @@ extern u32 luw_malloc_handler(size_t size); #pragma GCC visibility push(default) extern void luw_init_ctx(luw_ctx_t *ctx, u8 *addr, size_t offset); -extern void luw_destroy_ctx(const luw_ctx_t *ctx); extern int luw_set_req_buf(luw_ctx_t *ctx, u8 **buf, unsigned long flags); extern const char *luw_get_http_path(const luw_ctx_t *ctx); extern const char *luw_get_http_method(const luw_ctx_t *ctx); |