From 3a109e1bc26eaeb314bbeb60ae4328f733f6c8e8 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Fri, 10 Jan 2020 16:06:38 +0000 Subject: [PATCH] Add link to posix_utils.html in posix.nim --- lib/posix/posix.nim | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/posix/posix.nim b/lib/posix/posix.nim index 8856f2d6567c2..70ba53a2e930f 100644 --- a/lib/posix/posix.nim +++ b/lib/posix/posix.nim @@ -16,7 +16,10 @@ ## convenience: cstrings are used instead of proper Nim strings and ## return codes indicate errors. If you want exceptions ## and a proper Nim-like interface, use the OS module or write a wrapper. - +## +## For high-level wrappers specialized for Linux and BSDs see: +## `posix_utils `_ +## ## Coding conventions: ## ALL types are named the same as in the POSIX standard except that they start ## with 'T' or 'P' (if they are pointers) and without the '_t' suffix to be