blob: 78dd1a4d808f3053a309aea0f848b5b05d643eb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* $OpenBSD: freelocale.c,v 1.1 2017/09/05 03:16:13 schwarze Exp $ */
/*
* Written in 2017 by Ingo Schwarze <schwarze@openbsd.org>.
* Released into the public domain.
*/
#include <locale.h>
void
freelocale(locale_t oldloc __attribute((__unused__)))
{
/* Nothing to do here. */
}
|