From ff32653598f7eb683c2a65c2d6e5cd15c7e5e73d Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 14 Jun 2002 07:52:32 +0000 Subject: Use the version from diffutils-2.8.2. --- lib/file-type.c | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) (limited to 'lib/file-type.c') diff --git a/lib/file-type.c b/lib/file-type.c index c4ccf0b8f6..87919a5911 100644 --- a/lib/file-type.c +++ b/lib/file-type.c @@ -1,5 +1,6 @@ -/* return a string describing the type of a file - Copyright (C) 2002 Free Software Foundation, Inc. +/* Return a string describing the type of a file. + + Copyright (C) 1993, 1994, 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -15,21 +16,24 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* Extracted from diffutils/src/diff.c. */ +/* Written by Paul Eggert. */ + +#if HAVE_CONFIG_H +# include +#endif +#include +#include #include "file-type.h" -#if ENABLE_NLS -# include -# define _(text) gettext (text) -#else -# define _(text) text -#endif +#include +#define _(text) gettext (text) char const * file_type (struct stat const *st) { - /* See POSIX 1003.1-2001 for these formats. + /* See POSIX 1003.1-2001 XCU Table 4-8 lines 17093-17107 for some of + these formats. To keep diagnostics grammatical in English, the returned string must start with a consonant. */ -- cgit v1.2.1