override nls P_() macro

This commit is contained in:
Mike Frysinger 2005-05-09 21:53:25 +00:00
parent ae38d65e95
commit 507d1f76e5

View File

@ -30,6 +30,7 @@ typedef long errcode_t;
/* NLS crap */
#define _(x) x
#define N_(x) x
#define P_(singular, plural, n) ((n) == 1 ? (singular) : (plural))
/* misc crap */
#define fatal_error(msg, err) bb_error_msg_and_die(msg)