Added the word "FLOAT" to be recognized as argument type float.

This commit is contained in:
Peter Berg Larsen 2005-01-03 20:16:23 +00:00 committed by Alexandre Julliard
parent 06f9b8b9ad
commit 73ef3155cf
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ int symbol_get_type (const char *string)
if (strstr (string, "double"))
return ARG_DOUBLE;
if (strstr (string, "float"))
if (strstr (string, "float") || strstr (string, "FLOAT"))
return ARG_FLOAT;
if (strstr (string, "void") || strstr (string, "VOID"))