diff options
| author | fxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-10-01 07:54:09 +0000 |
|---|---|---|
| committer | fxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-10-01 07:54:09 +0000 |
| commit | b362cebe397fcecebeb3d776bd595a75d5d76f04 (patch) | |
| tree | e393470fac50427bb355091f4f674a69d2dc9b46 | |
| parent | a1b116172af79e584c876cce29be97bc2e4e38cf (diff) | |
| download | ppe42-gcc-b362cebe397fcecebeb3d776bd595a75d5d76f04.tar.gz ppe42-gcc-b362cebe397fcecebeb3d776bd595a75d5d76f04.zip | |
* libgfortran.h: Add prototype for internal_unpack_c16.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@117345 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | libgfortran/ChangeLog | 4 | ||||
| -rw-r--r-- | libgfortran/libgfortran.h | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index ed23b400ffe..938e9465a89 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,7 @@ +2006-10-01 Francois-Xavier Coudert <coudert@clipper.ens.fr> + + * libgfortran.h: Add prototype for internal_unpack_c16. + 2006-09-29 Francois-Xavier Coudert <coudert@clipper.ens.fr> PR libfortran/18791 diff --git a/libgfortran/libgfortran.h b/libgfortran/libgfortran.h index 0c0e6cd29be..cdbde51f0af 100644 --- a/libgfortran/libgfortran.h +++ b/libgfortran/libgfortran.h @@ -646,6 +646,11 @@ extern void internal_unpack_c10 (gfc_array_c10 *, const GFC_COMPLEX_10 *); internal_proto(internal_unpack_c10); #endif +#if defined HAVE_GFC_COMPLEX_16 +extern void internal_unpack_c16 (gfc_array_c16 *, const GFC_COMPLEX_16 *); +internal_proto(internal_unpack_c16); +#endif + /* string_intrinsics.c */ extern GFC_INTEGER_4 compare_string (GFC_INTEGER_4, const char *, |

