We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e4b2411 + 7366c39 commit ae6c103Copy full SHA for ae6c103
doc/src/manual/embedding.md
@@ -16,7 +16,7 @@ We start with a simple C program that initializes Julia and calls some Julia cod
16
17
```c
18
#include <julia.h>
19
-JULIA_DEFINE_FAST_TLS() // only define this once, in an executable (not in a shared library) if you want fast code.
+JULIA_DEFINE_FAST_TLS // only define this once, in an executable (not in a shared library) if you want fast code.
20
21
int main(int argc, char *argv[])
22
{
test/embedding/embedding.c
@@ -4,7 +4,7 @@
4
#include <stdio.h>
5
#include <math.h>
6
7
-JULIA_DEFINE_FAST_TLS() // only define this once, in an executable
+JULIA_DEFINE_FAST_TLS // only define this once, in an executable
8
9
#ifdef _OS_WINDOWS_
10
__declspec(dllexport) __cdecl
0 commit comments