diff options
-rw-r--r-- | doc/source/f2py/advanced.rst | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/doc/source/f2py/advanced.rst b/doc/source/f2py/advanced.rst index c8efbaadb..cf9984380 100644 --- a/doc/source/f2py/advanced.rst +++ b/doc/source/f2py/advanced.rst @@ -79,14 +79,18 @@ that defines mapping between Fortran type:: and the corresponding <C type>. The <C type> can be one of the following:: + double + float + long_double char signed_char + unsigned_char short + unsigned_short int + long long_long - float - double - long_double + unsigned complex_float complex_double complex_long_double |