mirror of
https://github.com/opnsense/src.git
synced 2026-04-04 08:55:18 -04:00
18 lines
277 B
C
18 lines
277 B
C
|
|
/* $FreeBSD$ */
|
||
|
|
|
||
|
|
#ifndef LANGINFO_H
|
||
|
|
#define LANGINFO_H
|
||
|
|
|
||
|
|
#include <sys/cdefs.h>
|
||
|
|
|
||
|
|
#define YESEXPR 1
|
||
|
|
|
||
|
|
/* xargs only needs yesexpr, so that's all we implement, for english */
|
||
|
|
static inline const char *
|
||
|
|
nl_langinfo(int type __unused)
|
||
|
|
{
|
||
|
|
return ("^[yY]");
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif /* LANGINFO_H */
|