We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09e2c4f commit 014a58cCopy full SHA for 014a58c
1 file changed
component-model/src/language-support/c.md
@@ -78,14 +78,14 @@ the prototype of the `add` function, which should look like this.
78
79
```c
80
uint32_t exports_docs_adder_add_add(uint32_t x, uint32_t y);
81
- ```
+```
82
83
2. `adder.c`, which interfaces with the component model ABI to call your function.
84
This file contains an `extern` declaration that looks like:
85
86
- ```c
+```c
87
extern void __component_type_object_force_link_adder(void);
88
89
90
3. `adder_component_type.o`, which contains object code, including
91
the definition of the `__component_type_object_force_link_adder` function,
0 commit comments