/* $OpenBSD: test-init.c,v 1.2 2015/01/20 04:41:01 krw Exp $ */ /* * Compile with: * cc -I/usr/local/include -o time-test time-test.c -L/usr/local/lib -levent */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #ifdef WIN32 #include #endif #include #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 */ event_init(); return (0); }