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 | 95e3a5b16acbade92de9f1e915da6960eb450b93 (patch) | |
tree | 8cab65a32dc089f349c1f608fdc5e6788bf9a29b | |
parent | 00aeb2256dff63efc959ab9a01841d0b1add3875 (diff) | |
download | txr-95e3a5b16acbade92de9f1e915da6960eb450b93.tar.gz txr-95e3a5b16acbade92de9f1e915da6960eb450b93.tar.bz2 txr-95e3a5b16acbade92de9f1e915da6960eb450b93.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 |