diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2012-01-22 01:26:18 +0300 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2012-01-22 01:26:18 +0300 |
commit | a79364a088ce1ec76e7fa31653547875183664e4 (patch) | |
tree | 8a17c33128105e62a8ba7dad298b3fef353cb978 | |
parent | 6f249e42089dda577e3a801ec7c381550c6d616a (diff) | |
download | util-linux-old-a79364a088ce1ec76e7fa31653547875183664e4.tar.gz |
Macro __P(x)
-rw-r--r-- | text-utils/column.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/text-utils/column.c b/text-utils/column.c index 156de705..493d0472 100644 --- a/text-utils/column.c +++ b/text-utils/column.c @@ -69,6 +69,10 @@ static char *mtsafe_strtok(char *, const char *, char **); #define DEFNUM 1000 #define MAXLINELEN (LINE_MAX + 1) +#ifndef __P +#define __P(x) x +#endif + static void c_columnate __P((void)); static void *emalloc __P((int)); static void input __P((FILE *)); |