8 lines
161 B
C
8 lines
161 B
C
/* Minimal gettext shim for standalone getopt build on MSVC. */
|
|
#ifndef _GETTEXT_H
|
|
#define _GETTEXT_H 1
|
|
|
|
#define gettext(msgid) (msgid)
|
|
|
|
#endif /* _GETTEXT_H */
|