]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/alien/c-types/c-types-docs.factor
alien.*: frontend varargs support! #1677
[factor.git] / basis / alien / c-types / c-types-docs.factor
index bf35d968afb8cbe36a92e7ea5e74d5c5558cd5ca..1da75ac00e31dee4973d8823248bdd29f30766a5 100644 (file)
@@ -87,7 +87,7 @@ $nl
 "In " { $link POSTPONE: TYPEDEF: } ", " { $link POSTPONE: FUNCTION: } ", " { $link POSTPONE: CALLBACK: } ", and " { $link POSTPONE: STRUCT: } " definitions, pointer types can be created by suffixing " { $snippet "*" } " to a C type name. Outside of FFI definitions, a pointer C type can be created using the " { $link POSTPONE: pointer: } " syntax word:"
 { $unchecked-example "FUNCTION: int* foo ( char* bar ) ;" }
 { $unchecked-example ": foo ( bar -- int* )
-    pointer: int f \"foo\" { pointer: char } alien-invoke ;" } } ;
+    pointer: int f \"foo\" { pointer: char } alien-invoke ;" } } ;
 
 ARTICLE: "byte-arrays-gc" "Byte arrays and the garbage collector"
 "The Factor garbage collector can move byte arrays around, and it is only safe to pass byte arrays to C functions if the garbage collector will not run while C code still has a reference to the data."