diff options
author | Bruno Haible <bruno@clisp.org> | 2007-02-18 04:16:52 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2007-02-18 04:16:52 +0000 |
commit | a9fb2254a2281f68060f4b18ddd30566a5f551a8 (patch) | |
tree | c5c079b1f96249db04e9c5f6fe92f86a7def2ea5 /tests/test-sys_select.c | |
parent | b4485ef01ea8fa6fc90eb5836e40c982dfc31fb0 (diff) | |
download | gnulib-a9fb2254a2281f68060f4b18ddd30566a5f551a8.tar.gz |
Tests for module 'sys_select'.
Diffstat (limited to 'tests/test-sys_select.c')
-rw-r--r-- | tests/test-sys_select.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/test-sys_select.c b/tests/test-sys_select.c new file mode 100644 index 0000000000..a748e60951 --- /dev/null +++ b/tests/test-sys_select.c @@ -0,0 +1,28 @@ +/* Test of <sys/select.h> substitute. + Copyright (C) 2007 Free Software Foundation, Inc. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software Foundation, + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + +/* Written by Bruno Haible <bruno@clisp.org>, 2007. */ + +#include <config.h> + +#include <sys/select.h> + +int +main () +{ + return 0; +} |