mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-19 14:31:48 +01:00
14 lines
237 B
C
14 lines
237 B
C
/* $FreeBSD$ */
|
|
|
|
#ifndef _LIBINTL_H_
|
|
#define _LIBINTL_H_
|
|
|
|
#include <sys/cdefs.h>
|
|
#include <stdio.h>
|
|
|
|
#define textdomain(domain) 0
|
|
#define gettext(...) (__VA_ARGS__)
|
|
#define dgettext(domain, ...) (__VA_ARGS__)
|
|
|
|
#endif /* !_SOLARIS_H_ */
|