From d9261791433663b27553b3a7ac609f99b6fa3a89 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Tue, 7 Jul 2015 23:22:29 +0200 Subject: Update docs --- compile.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/compile.c b/compile.c index 2295f20..5e8f167 100644 --- a/compile.c +++ b/compile.c @@ -34,13 +34,13 @@ /** * Compile a Clean module in a path * - * This may fail (hard) when out of memory or when clm fails + * This may fail (hard) when out of memory * clm should be in $PATH * * @param CleanString path the path * @param CleanString module the module * - * @return void + * @return int the result of clm */ int64_t compile(CleanString path, CleanString module) { char* pathchars, * modulechars; @@ -113,3 +113,4 @@ void run(CleanString executable) { strcat(execchars, " -nt"); system(execchars); } + -- cgit v1.2.3