diff options
author | Ondřej Vašík <ovasik@redhat.com> | 2008-06-23 14:00:26 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-06-23 14:46:05 +0200 |
commit | 2e6fa14d16ffda65ffb45fad94140fc340b84f26 (patch) | |
tree | 15c780b24846338d7f031cfac980c9fa5002b290 /src | |
parent | 3ea1fe588e20f196cc9b9907d5943bd620c6b944 (diff) | |
download | coreutils-2e6fa14d16ffda65ffb45fad94140fc340b84f26.tar.xz |
echo: use AUTHORS from bash's built-in echo
* AUTHORS,src/echo.c: Use bash builtin echo authors instead of FIXME unknown
Diffstat (limited to 'src')
-rw-r--r-- | src/echo.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/echo.c b/src/echo.c index ebbf5b82e..11e648ed4 100644 --- a/src/echo.c +++ b/src/echo.c @@ -24,7 +24,9 @@ /* The official name of this program (e.g., no `g' prefix). */ #define PROGRAM_NAME "echo" -#define AUTHORS proper_name ("FIXME unknown") +#define AUTHORS \ + proper_name ("Brian Fox"), \ + proper_name ("Chet Ramey") /* echo [-neE] [arg ...] Output the ARGs. If -n is specified, the trailing newline is |