mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
8 lines
265 B
C
8 lines
265 B
C
|
// Copyright 2012 Google Inc. All Rights Reserved.
|
||
|
// Author: yugui@google.com (Yugui Sonoda)
|
||
|
#ifndef RUBY_NACL_SELECT_H
|
||
|
#define RUBY_NACL_SELECT_H
|
||
|
int select(int num_fds, fd_set *in_fds, fd_set *out_fds,
|
||
|
fd_set *ex_fds, struct timeval *timeout);
|
||
|
#endif
|