summaryrefslogtreecommitdiff
path: root/examples/main.c
blob: 532407a6a5d786a5d83de5a4a6f9173e44741dfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* This is just to make the code in the example directory link properly.

  SPDX-FileCopyrightText: <eric@civicknowledge.com>
  SPDX-License-Identifier: LGPL-2.1-only OR MPL-2.0
*/

#include <libical/ical.h>

int main(void)
{
    return 1;
}

void do_something(icalcomponent* comp)
{
    (void)comp;/*unused*/
}