blob: 1b8347af9f61a01da4ecd0666977d9e4ba37d1b0 (
plain) (
tree)
|
|
/* 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);
}
|