diff options
Diffstat (limited to 'libical/examples/main.c')
-rw-r--r-- | libical/examples/main.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libical/examples/main.c b/libical/examples/main.c index 88d6621365..1be2de5c9e 100644 --- a/libical/examples/main.c +++ b/libical/examples/main.c @@ -1,9 +1,12 @@ /* This is just to make the code in the example directory link properly. */ +#include "ical.h" -main() +int main() { + + return 1; } -int do_something(){ +void do_something(icalcomponent* comp){ } |