diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2022-12-10 23:32:46 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2022-12-10 23:32:46 -0800 |
commit | 9132c01460eec7be4575ee2ea01f94d15bbdb90a (patch) | |
tree | 8cab65a32dc089f349c1f608fdc5e6788bf9a29b | |
parent | 7c46aa5dfa5c41b2a8542b33e8bd210e7a7d3ac1 (diff) | |
download | txr-9132c01460eec7be4575ee2ea01f94d15bbdb90a.tar.gz txr-9132c01460eec7be4575ee2ea01f94d15bbdb90a.tar.bz2 txr-9132c01460eec7be4575ee2ea01f94d15bbdb90a.zip |
doc: abc_function typo.
* txr.1: In FFI-related example, a call to abc_function
should just refer to function.
-rw-r--r-- | txr.1 | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -83347,7 +83347,7 @@ looks like this: .verb void function(int *ptr); int val = 0; - abc_function(&val); + function(&val); .brev In the case of an aggregate type, such as a structure, being an in-out or out |