]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/alien/libraries/libraries-docs.factor
Remove stack effects from HELP: declarations.
[factor.git] / basis / alien / libraries / libraries-docs.factor
index 8676ac8c58295629d4c52e3daedbfa8531a1d359..f9828e2835b8dd66ee9965445e0e516cf03ac010 100644 (file)
@@ -24,17 +24,17 @@ HELP: library
     }
 } ;
 
-HELP: dlopen ( path -- dll )
+HELP: dlopen
 { $values { "path" "a pathname string" } { "dll" "a DLL handle" } }
 { $description "Opens a native library and outputs a handle which may be passed to " { $link dlsym } " or " { $link dlclose } "." }
 { $errors "Throws an error if the library could not be found, or if loading fails for some other reason." }
 { $notes "This is the low-level facility used to implement " { $link load-library } ". Use the latter instead." } ;
 
-HELP: dlsym ( name dll -- alien )
+HELP: dlsym
 { $values { "name" "a C symbol name" } { "dll" "a DLL handle" } { "alien" { $maybe alien } } }
 { $description "Looks up a symbol in a native library. If " { $snippet "dll" } " is " { $link f } " looks for the symbol in the runtime executable. If the symbol was not found, outputs " { $link f } "." } ;
 
-HELP: dlclose ( dll -- )
+HELP: dlclose
 { $values { "dll" "a DLL handle" } }
 { $description "Closes a DLL handle created by " { $link dlopen } ". This word might not be implemented on all platforms." } ;