Edit

kc3-lang/libevent/test/test-init.c

Branch :

  • Show log

    Commit

  • Author : Nick Mathewson
    Date : 2011-05-25 19:50:56
    Hash : 9f560bfa
    Message : Use "_WIN32", not WIN32: it's standard and we don't need to fake it This patch was automatically generated with perl. Based on a patch by Peter Rosin.

  • test/test-init.c
  • /*
     * Compile with:
     * cc -I/usr/local/include -o time-test time-test.c -L/usr/local/lib -levent
     */
    #include "event2/event-config.h"
    
    #include <sys/types.h>
    #include <sys/stat.h>
    #ifdef _EVENT_HAVE_SYS_TIME_H
    #include <sys/time.h>
    #endif
    #ifdef _EVENT_HAVE_SYS_SOCKET_H
    #include <sys/socket.h>
    #endif
    #include <fcntl.h>
    #include <stdlib.h>
    #include <stdio.h>
    #include <string.h>
    #ifndef _WIN32
    #include <unistd.h>
    #endif
    #include <errno.h>
    
    #include <event.h>
    
    int
    main(int argc, char **argv)
    {
    #ifdef _WIN32
    	WORD wVersionRequested;
    	WSADATA wsaData;
    	int	err;
    
    	wVersionRequested = MAKEWORD(2, 2);
    
    	err = WSAStartup(wVersionRequested, &wsaData);
    #endif
    
    	/* Initalize the event library */
    	event_init();
    
    	return (0);
    }