diff options
author | François Revol <revol@free.fr> | 2010-07-26 11:41:04 +0200 |
---|---|---|
committer | Karel Zak <kzak@redhat.com> | 2010-07-26 11:41:04 +0200 |
commit | 1bf4407a1d40e5a87f9cfbb44116ce52adce9ef8 (patch) | |
tree | 3210eb0f9f1e3775012b69b2378d212d9a37c1ae /text-utils | |
parent | d063af060490747fa492d35cb8f446c7ed8a0ba3 (diff) | |
download | util-linux-old-1bf4407a1d40e5a87f9cfbb44116ce52adce9ef8.tar.gz |
portability: use standard constants
Signed-off-by: François Revol <revol@free.fr>
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'text-utils')
-rw-r--r-- | text-utils/more.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/text-utils/more.c b/text-utils/more.c index 2eedfbe1..20efc28d 100644 --- a/text-utils/more.c +++ b/text-utils/more.c @@ -62,6 +62,10 @@ #include <regex.h> #undef _REGEX_RE_COMP +#ifndef XTABS +#define XTABS TAB3 +#endif + #define VI "vi" /* found on the user's path */ #define Fopen(s,m) (Currline = 0,file_pos=0,fopen(s,m)) |