/* * Compile with: * cc -I/usr/local/include -o time-test time-test.c -L/usr/local/lib -levent */ #ifdef HAVE_SYS_TYPES_H #include #endif #include #ifdef HAVE_SYS_TIME_H #include #endif #ifdef HAVE_SYS_SOCKET_H #include #endif #include #include #include #include #ifdef HAVE_UNISTD_H #include #endif #include #include int main(int argc, char **argv) { /* Initalize the event library */ opal_event_init(); return (0); }