src: remove Curl_ prefix from tool-specific function

Since that's a prefix we use for library-private functions

Curl_execpath is now tool_execpath

Closes #16657
This commit is contained in:
Daniel Stenberg 2025-03-10 16:54:16 +01:00
parent 571e92f730
commit 8df315d5b3
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
4 changed files with 5 additions and 5 deletions

View file

@ -214,7 +214,7 @@ int tool_ftruncate64(int fd, curl_off_t where)
#endif /* USE_TOOL_FTRUNCATE */
#if defined(_WIN32) && !defined(UNDER_CE)
FILE *Curl_execpath(const char *filename, char **pathp)
FILE *tool_execpath(const char *filename, char **pathp)
{
static char filebuffer[512];
unsigned long len;