Pull out inline function to make clang happy

Thanks @Janfel and @dosentmatter for reporting this. Fixes #14.
This commit is contained in:
jaseg 2018-12-02 13:35:45 +09:00
parent 38db5de767
commit a21247efe1

View file

@ -76,6 +76,17 @@ static void version(void)
exit(0);
}
static wint_t helpstr_hack(FILE * _ignored)
{
(void)_ignored;
static size_t idx = 0;
char c = helpstr[idx++];
if (c)
return c;
idx = 0;
return WEOF;
}
int main(int argc, char** argv)
{
char* default_argv[] = { "-" };
@ -138,17 +149,6 @@ int main(int argc, char** argv)
FILE* f;
int escape_state = 0;
wint_t helpstr_hack(FILE * _ignored)
{
(void)_ignored;
static size_t idx = 0;
char c = helpstr[idx++];
if (c)
return c;
idx = 0;
return WEOF;
}
if (!strcmp(*filename, "--help")) {
this_file_read_wchar = &helpstr_hack;
f = 0;