tool_hugehelp: make hugehelp a blank macro when disabled

Closes #9485
This commit is contained in:
Daniel Stenberg 2022-09-13 10:25:26 +02:00
parent a850b9edb9
commit b54920f7e4
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
4 changed files with 7 additions and 10 deletions

View file

@ -25,6 +25,11 @@
***************************************************************************/
#include "tool_setup.h"
#ifdef USE_MANUAL
void hugehelp(void);
#else
/* do nothing if not there */
#define hugehelp()
#endif
#endif /* HEADER_CURL_TOOL_HUGEHELP_H */