Blame


1 0b8133c2 2021-02-08 op /*
2 0b8133c2 2021-02-08 op * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
3 0b8133c2 2021-02-08 op *
4 0b8133c2 2021-02-08 op * Permission to use, copy, modify, and distribute this software for any
5 0b8133c2 2021-02-08 op * purpose with or without fee is hereby granted, provided that the above
6 0b8133c2 2021-02-08 op * copyright notice and this permission notice appear in all copies.
7 0b8133c2 2021-02-08 op *
8 0b8133c2 2021-02-08 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 0b8133c2 2021-02-08 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 0b8133c2 2021-02-08 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 0b8133c2 2021-02-08 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 0b8133c2 2021-02-08 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 0b8133c2 2021-02-08 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 0b8133c2 2021-02-08 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 0b8133c2 2021-02-08 op */
16 0b8133c2 2021-02-08 op
17 0b8133c2 2021-02-08 op #include <sys/time.h>
18 0b8133c2 2021-02-08 op
19 0b8133c2 2021-02-08 op #include <event.h>
20 0b8133c2 2021-02-08 op
21 0b8133c2 2021-02-08 op int
22 0b8133c2 2021-02-08 op main(void)
23 0b8133c2 2021-02-08 op {
24 0b8133c2 2021-02-08 op event_init();
25 0b8133c2 2021-02-08 op return 0;
26 0b8133c2 2021-02-08 op }