diff options
author | Sverker Eriksson <[email protected]> | 2016-09-22 16:08:38 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2016-09-22 16:08:38 +0200 |
commit | a96cf9c89b9e8b91e43b5c5366c6890590bc95ff (patch) | |
tree | 65476d064316adbaa3ab239a3e159271999d193a /system/doc/tutorial/complex6_nif.c | |
parent | f9ee3718f05bd0a353fe6ba52edff3febf3bf268 (diff) | |
parent | 3489b9b689073f428a23f7fc7a67774b7dda07be (diff) | |
download | otp-a96cf9c89b9e8b91e43b5c5366c6890590bc95ff.tar.gz otp-a96cf9c89b9e8b91e43b5c5366c6890590bc95ff.tar.bz2 otp-a96cf9c89b9e8b91e43b5c5366c6890590bc95ff.zip |
Merge branch 'sverker/include-erl_nif/PR-1171'
* sverker/include-erl_nif/PR-1171:
Use more correct delimiters for erl_nif.h include
Diffstat (limited to 'system/doc/tutorial/complex6_nif.c')
-rw-r--r-- | system/doc/tutorial/complex6_nif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/doc/tutorial/complex6_nif.c b/system/doc/tutorial/complex6_nif.c index b656ed43ce..f6c06e94f4 100644 --- a/system/doc/tutorial/complex6_nif.c +++ b/system/doc/tutorial/complex6_nif.c @@ -1,4 +1,4 @@ -#include "erl_nif.h" +#include <erl_nif.h> extern int foo(int x); extern int bar(int y); |