clang-tidy: add arg names to prototypes where missing (cont.)

Detected by `readability-named-parameter` with `HeaderFilterRegex: '.*'`,
or `CURL_CLANG_TIDYFLAGS='--header-filter=.*'`. Seen on Windows.

Follow-up to e8415ad3c7 #20657
Follow-up to c878160e9c #20624

Closes #20693
This commit is contained in:
Viktor Szakats 2026-02-23 15:52:39 +01:00
parent e9786038d6
commit f1cee1f18a
No known key found for this signature in database

View file

@ -43,7 +43,7 @@
inet_pton(x, y, z)
#endif
#else
int curlx_inet_pton(int, const char *, void *);
int curlx_inet_pton(int af, const char *src, void *dst);
#endif /* HAVE_INET_PTON */
#endif /* HEADER_CURL_INET_PTON_H */