view src/libgsasl-test.c @ 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 <gsasl.h>

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

    (void)argc;
    (void)argv;

    if (gsasl_init(&ctx) == GSASL_OK)
    {
        (void)gsasl_client_support_p(ctx, "CRAM-MD5");
        gsasl_done(ctx);
        return 0;
    }

    return 0;
}