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


void
liberror_set_error_errno(const char description[256], const char source[64], int code)
{
	liberror_set_error(description, source, "errno", (long long int)code);
}