14 lines
285 B
C
14 lines
285 B
C
|
/* $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. */
|
||
|
}
|