summaryrefslogtreecommitdiff
path: root/src/locale/strerror_l.c
blob: 765f5c69feaede8e3c61777220e8d426a6348d64 (plain) (blame)
1
2
3
4
5
6
7
#include <string.h>
#include <locale.h>

char *strerror_l(int err, locale_t l)
{
	return strerror(err);
}