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