f3b7b31ee0
related symbols nowadays. Update libhack to avoid pulling in full grown multibyte locale support on small install media.
21 lines
369 B
C
21 lines
369 B
C
/* $NetBSD: nl_langinfo.c,v 1.1 2019/07/28 10:21:18 martin Exp $ */
|
|
|
|
/*
|
|
* Written by Martin Husemann <martin@NetBSD.org>
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <langinfo.h>
|
|
|
|
/*
|
|
* Cheap and dirty nl_langinfo() - implements just enough
|
|
* for our libcurses in crunched environments.
|
|
*/
|
|
char *
|
|
nl_langinfo(nl_item what)
|
|
{
|
|
if (what == CODESET)
|
|
return "ASCII";
|
|
return "";
|
|
}
|