projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
11134c9
)
clarification
author
Stefan Behnel
<scoder@users.berlios.de>
Thu, 20 Jan 2011 20:45:48 +0000
(21:45 +0100)
committer
Stefan Behnel
<scoder@users.berlios.de>
Thu, 20 Jan 2011 20:45:48 +0000
(21:45 +0100)
src/tutorial/external.rst
patch
|
blob
|
history
diff --git
a/src/tutorial/external.rst
b/src/tutorial/external.rst
index 991e71dbf3c7332607e366fe182fec5a5670dd35..ec0022c8f24ec730da527f31a23cab43cbd63ef7 100644
(file)
--- a/
src/tutorial/external.rst
+++ b/
src/tutorial/external.rst
@@
-68,7
+68,7
@@
above ``sin()`` function is defined as follows::
double sin(double)
This declares the ``sin()`` function in a way that makes it available
-to Cython code and instructs Cython to generate C code that i
mport
s
+to Cython code and instructs Cython to generate C code that i
nclude
s
the ``math.h`` header file. The C compiler will see the original
declaration in ``math.h`` at compile time, but Cython does not parse
"math.h" and requires a separate definition.