diff options
Diffstat (limited to 'libgfortran/m4/minval.m4')
-rw-r--r-- | libgfortran/m4/minval.m4 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libgfortran/m4/minval.m4 b/libgfortran/m4/minval.m4 index 2c1be2b..cdee06c 100644 --- a/libgfortran/m4/minval.m4 +++ b/libgfortran/m4/minval.m4 @@ -27,13 +27,13 @@ Boston, MA 02111-1307, USA. */ include(iparm.m4)dnl include(ifunction.m4)dnl -ARRAY_FUNCTION(type_max, -` result = type_max;', +ARRAY_FUNCTION(atype_max, +` result = atype_max;', ` if (*src < result) result = *src;') -MASKED_ARRAY_FUNCTION(type_max, -` result = type_max;', +MASKED_ARRAY_FUNCTION(atype_max, +` result = atype_max;', ` if (*msrc && *src < result) result = *src;') |