Imported upstream version 1.6.7
[platform/upstream/cryptsetup.git] / lib / nls.h
index d7a9d9b..39760b1 100644 (file)
--- a/lib/nls.h
+++ b/lib/nls.h
@@ -27,6 +27,8 @@
 # define textdomain(Domain) /* empty */
 # define _(Text) (Text)
 # define N_(Text) (Text)
+# define ngettext(Singular, Plural, Count) \
+    ( (Count) == 1 ? (Singular) : (Plural) )
 #endif
 
-#endif /* CRYPTSETUP_H */
+#endif /* CRYPTSETUP_NLS_H */