Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
unix: remove unused __attribute__((unused))
Browse files Browse the repository at this point in the history
  • Loading branch information
bnoordhuis committed May 24, 2012
1 parent 604802a commit ce28e13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/unix/internal.h
Expand Up @@ -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);
Expand Down

0 comments on commit ce28e13

Please sign in to comment.