aboutsummaryrefslogtreecommitdiffstats
path: root/new.c
blob: 9cf17d0cb3e70223aa395609d0039e5e806aedd0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
/* See LICENSE file for copyright and license details. */
#include "internal.h"


gpgme_error_t
liberror_gpgme_new(gpgme_ctx_t *ctx)
{
	gpgme_error_t ret = gpgme_new(ctx);
	if (ret)
		liberror_gpgme_set_error("gpgme_new", ret);
	return ret;
}