diff options
author | Brian White <mscdex@mscdex.net> | 2015-09-02 01:32:55 -0400 |
---|---|---|
committer | Saúl Ibarra Corretgé <saghul@gmail.com> | 2015-09-02 09:58:55 +0200 |
commit | 866dc3f98bdf58357b0053e6de90cdcbd59f7efc (patch) | |
tree | 2750a377194f98f5e64d9e7056c61c8f9c85a249 /docs/src | |
parent | 8b90faff6c55cc4bfbc19f0aec655b89fa7283be (diff) | |
download | libuv-866dc3f98bdf58357b0053e6de90cdcbd59f7efc.tar.gz libuv-866dc3f98bdf58357b0053e6de90cdcbd59f7efc.zip |
doc: add uv_dlsym() return type
PR-URL: https://github.com/libuv/libuv/pull/503
Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/dll.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/dll.rst b/docs/src/dll.rst index 3fb11e19..fb13f908 100644 --- a/docs/src/dll.rst +++ b/docs/src/dll.rst @@ -34,7 +34,7 @@ API Close the shared library. -.. c:function:: uv_dlsym(uv_lib_t* lib, const char* name, void** ptr) +.. c:function:: int uv_dlsym(uv_lib_t* lib, const char* name, void** ptr) Retrieves a data pointer from a dynamic library. It is legal for a symbol to map to NULL. Returns 0 on success and -1 if the symbol was not found. |