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