test: fix -Wstrict-prototypes warnings

These have been around for some time apparently (commit 391f0098de from
May 2011) but went unnoticed so far.  No longer.

PR-URL: https://github.com/libuv/libuv/pull/1581
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
This commit is contained in:
Ben Noordhuis 2017-10-02 21:05:47 +02:00
parent 1d9c13f1f7
commit 763f34cc1f

View File

@ -36,9 +36,9 @@ static int TARGET_CONNECTIONS;
static void do_write(uv_stream_t*);
static void maybe_connect_some();
static void maybe_connect_some(void);
static uv_req_t* req_alloc();
static uv_req_t* req_alloc(void);
static void req_free(uv_req_t* uv_req);
static void buf_alloc(uv_handle_t* handle, size_t size, uv_buf_t* buf);