Kaydet (Commit) 78ddea8e authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror,-Wunused-function (clang-cl)

Change-Id: I351067e7274c13d5364ffa1b168910eb1b82af37
üst 93dce732
...@@ -362,27 +362,6 @@ int readoptions(char* filename, char*** pfargv) ...@@ -362,27 +362,6 @@ int readoptions(char* filename, char*** pfargv)
return (back); return (back);
} }
#if HOST != SYS_UNIX
/*
* Dec operating systems mangle upper-lower case in command lines.
* This routine forces the -D and -U arguments to uppercase.
* It is called only on cpp startup by dooptions().
*/
static void zap_uc(char* ap)
{
while (*ap != EOS)
{
/*
* Don't use islower() here so it works with Multinational
*/
if (*ap >= 'a' && *ap <= 'z')
*ap = (char)toupper(*ap);
ap++;
}
}
#endif
/* /*
* Initialize the built-in #define's. There are two flavors: * Initialize the built-in #define's. There are two flavors:
* #define decus 1 (static definitions) * #define decus 1 (static definitions)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment