Skip to content

Commit

Permalink
fix FFTW#19: missing Fortran interface for fftwq_alloc_real
Browse files Browse the repository at this point in the history
  • Loading branch information
stevengj committed Jul 10, 2014
1 parent 07ef78d commit 2493129
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/genf03.pl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ sub canonicalize_type {
"double" => "real(C_DOUBLE)",
"float" => "real(C_FLOAT)",
"long double" => "real(C_LONG_DOUBLE)",
"float128__" => "real(16)",
"__float128" => "real(16)",
"fftw_plan" => "type(C_PTR)",
"fftwf_plan" => "type(C_PTR)",
"fftwl_plan" => "type(C_PTR)",
Expand All @@ -35,7 +35,7 @@ sub canonicalize_type {
"double *" => "type(C_PTR)",
"float *" => "type(C_PTR)",
"long double *" => "type(C_PTR)",
"float128__ *" => "type(C_PTR)",
"__float128 *" => "type(C_PTR)",
"fftw_complex *" => "type(C_PTR)",
"fftwf_complex *" => "type(C_PTR)",
"fftwl_complex *" => "type(C_PTR)",
Expand Down

0 comments on commit 2493129

Please sign in to comment.