summary refs log tree commit diff stats
path: root/lib/posix/linux.nim
diff options
context:
space:
mode:
Diffstat (limited to 'lib/posix/linux.nim')
-rw-r--r--lib/posix/linux.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/posix/linux.nim b/lib/posix/linux.nim
index 5ce9bf2fb..2d6702e87 100644
--- a/lib/posix/linux.nim
+++ b/lib/posix/linux.nim
@@ -31,7 +31,7 @@ const
   CLONE_IO* = 0x80000000'i32
   CLONE_STOPPED* {.deprecated.} = 0x02000000'i32
 
-# fn should be of type proc (a2: pointer): void {.cdecl.}
+# fn should be of type proc (a2: pointer) {.cdecl.}
 proc clone*(fn: pointer; child_stack: pointer; flags: cint;
             arg: pointer; ptid: ptr Pid; tls: pointer;
             ctid: ptr Pid): cint {.importc, header: "<sched.h>".}