1// Copyright 2012 Google Inc. All Rights Reserved.
2// Author: yugui@google.com (Yugui Sonoda)
3#ifndef RUBY_NACL_SELECT_H
4#define RUBY_NACL_SELECT_H
5int select(int num_fds, fd_set *in_fds, fd_set *out_fds,
6           fd_set *ex_fds, struct timeval *timeout);
7#endif
8