From afe8c560f056a6cca636f3abd8a602bcc27e9b5e Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Mon, 26 Feb 2018 14:30:37 -0500 Subject: [PATCH] doc: update list of re-exported symbols libuv and zlib symbols are also purposefully re-exported by Node.js for use in Addons. Refs: https://github.com/nodejs/node/issues/17444 --- doc/api/addons.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/api/addons.md b/doc/api/addons.md index ba98d8f5eb2aee..1db1e5ecaf9d5b 100644 --- a/doc/api/addons.md +++ b/doc/api/addons.md @@ -34,8 +34,9 @@ involving knowledge of several components and APIs : - Node.js includes a number of other statically linked libraries including OpenSSL. These other libraries are located in the `deps/` directory in the - Node.js source tree. Only the V8 and OpenSSL symbols are purposefully - re-exported by Node.js and may be used to various extents by Addons. + Node.js source tree. Only the libuv, OpenSSL, V8 and zlib symbols are + purposefully re-exported by Node.js and may be used to various extents by + Addons. See [Linking to Node.js' own dependencies][] for additional information. All of the following examples are available for [download][] and may