--- /dev/null
+/* freelocale( locale_t )\r
+\r
+ This file is part of the Public Domain C Library (PDCLib).\r
+ Permission is granted to use, modify, and / or redistribute at will.\r
+*/\r
+\r
+#include <locale.h>\r
+#ifndef REGTEST\r
+#include <_PDCLIB_locale.h>\r
+#include <assert.h>\r
+\r
+void freelocale( locale_t newloc )\r
+{\r
+ if( newloc != NULL ) {\r
+ assert( ! "Not implemented" );\r
+ }\r
+}\r
+\r
+#endif\r
+\r
+#ifdef TEST\r
+#include <_PDCLIB_test.h>\r
+\r
+int main( void )\r
+{\r
+ TESTCASE( NO_TESTDRIVER );\r
+ return TEST_RESULTS;\r
+}\r
+#endif\r