| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #include "config.h" |
| |
| #include <sys/types.h> |
| |
| #ifdef HAVE_STDLIB_H |
| #include <stdlib.h> |
| #endif |
| #ifdef HAVE_UNISTD_H |
| #include <unistd.h> |
| #endif |
| |
| #include "ne_request.h" |
| #include "ne_socket.h" |
| |
| #include "tests.h" |
| #include "child.h" |
| #include "utils.h" |
| |
| static int foo(void) |
| { |
| |
| return OK; |
| } |
| |
| ne_test tests[] = { |
| T(foo), |
| |
| |
| T(NULL) |
| }; |
| |