unix: remove unused __attribute__((unused))

This commit is contained in:
Ben Noordhuis 2012-05-25 01:24:17 +02:00
parent 604802ad47
commit ce28e13038

View File

@ -126,8 +126,8 @@ inline static void uv__req_init(uv_loop_t* loop,
/* core */
void uv__handle_init(uv_loop_t* loop, uv_handle_t* handle, uv_handle_type type);
int uv__nonblock(int fd, int set) __attribute__((unused));
int uv__cloexec(int fd, int set) __attribute__((unused));
int uv__nonblock(int fd, int set);
int uv__cloexec(int fd, int set);
int uv__socket(int domain, int type, int protocol);
int uv__dup(int fd);
int uv_async_stop(uv_async_t* handle);