view src/libircclient-test.cpp @ 5598:9722214b6722

LLVM: Update to version 8.0.1. * src/llvm.mk: Update version and checksum. Remove unused variable. * src/llvm-2-demangle.patch: Add new patch that adds missing headers. * dist-files.mk: Include new file in list.
author Markus Mützel <markus.muetzel@gmx.de>
date Fri, 11 Dec 2020 20:46:31 +0100
parents 99516e73b368
children
line wrap: on
line source

/*
 * This file is part of MXE.
 * See index.html for further information.
 */

#include <libircclient/libircclient.h>

int main(int argc, char *argv[])
{
    (void)argc;
    (void)argv;

    irc_callbacks_t callbacks;
    memset(&callbacks, 0, sizeof(callbacks));

    irc_create_session(&callbacks);
    return 0;
}