buildconf.bat: fix tool_hugehelp.c generation

- Fix showhelp() function prototype in tool_hugehelp.c.cvs.

Follow-up to 9a0cf564 which added the function.

Closes https://github.com/curl/curl/pull/14622
This commit is contained in:
Jay Satiro 2024-08-21 01:25:14 -04:00
parent 81a0861463
commit eb5c3f3707

View File

@ -30,8 +30,9 @@ void hugehelp(void)
puts("built-in manual was disabled at build-time");
}
void showhelp(const char *arg, const char *endarg)
void showhelp(const char *trigger, const char *arg, const char *endarg)
{
(void)trigger;
(void)arg;
(void)endarg;
hugehelp();