To sync with its declaration.
Fixing (seen when building trurl in curl-for-win):
```
ld.lld: error: undefined symbol: Curl_resolver_error
```
Ref: https://github.com/curl/curl-for-win/actions/runs/
23388349475/job/
68038915761#step:3:7469
Closes #21054
* Curl_resolver_error() calls failf() with the appropriate message after a
* resolve error
*/
-
-#ifdef USE_CURL_ASYNC
CURLcode Curl_resolver_error(struct Curl_easy *data, const char *detail)
{
struct connectdata *conn = data->conn;
detail ? " (" : "", detail ? detail : "", detail ? ")" : "");
return result;
}
-#endif /* USE_CURL_ASYNC */