From: Stefan Behnel Date: Thu, 20 Jan 2011 20:45:48 +0000 (+0100) Subject: clarification X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0155274e548fe1b8e0e6361e4fcab37ce5cbbfda;p=cython.git clarification --- diff --git a/src/tutorial/external.rst b/src/tutorial/external.rst index 991e71db..ec0022c8 100644 --- 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 imports +to Cython code and instructs Cython to generate C code that includes 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.