summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-04-03 05:22:05 +0000
committerJim Meyering <jim@meyering.net>1999-04-03 05:22:05 +0000
commit1d47220ab215c10e3883915a24ae1318213fb4da (patch)
tree076a4e3786254bb51b7f29294d385cd54498dd1a
parentcf691ec714de68d0a2d0dec53704b02e2ab52009 (diff)
downloadcoreutils-1d47220ab215c10e3883915a24ae1318213fb4da.tar.xz
Insert AUTHORS definition.
-rw-r--r--src/cat.c2
-rw-r--r--src/cksum.c2
-rw-r--r--src/comm.c2
-rw-r--r--src/csplit.c2
-rw-r--r--src/cut.c2
-rw-r--r--src/expand.c2
-rw-r--r--src/fmt.c2
-rw-r--r--src/fold.c2
-rw-r--r--src/head.c2
-rw-r--r--src/join.c2
-rw-r--r--src/md5sum.c2
-rw-r--r--src/nl.c2
-rw-r--r--src/od.c2
-rw-r--r--src/paste.c2
-rw-r--r--src/pr.c2
-rw-r--r--src/ptx.c2
-rw-r--r--src/sort.c2
-rw-r--r--src/split.c2
-rw-r--r--src/sum.c2
-rw-r--r--src/tac.c2
-rw-r--r--src/tail.c2
-rw-r--r--src/tr.c2
-rw-r--r--src/tsort.c2
-rw-r--r--src/unexpand.c2
-rw-r--r--src/uniq.c2
-rw-r--r--src/wc.c2
26 files changed, 52 insertions, 0 deletions
diff --git a/src/cat.c b/src/cat.c
index 38596731c..abc8033e2 100644
--- a/src/cat.c
+++ b/src/cat.c
@@ -38,6 +38,8 @@
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "cat"
+#define AUTHORS "Torbjorn Granlund and Richard M. Stallman"
+
/* Undefine, to avoid warning about redefinition on some systems. */
#undef max
#define max(h,i) ((h) > (i) ? (h) : (i))
diff --git a/src/cksum.c b/src/cksum.c
index 60ed6d4c8..0e6baff1c 100644
--- a/src/cksum.c
+++ b/src/cksum.c
@@ -45,6 +45,8 @@
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "cksum"
+#define AUTHORS "Q. Frank Xia"
+
#ifdef CRCTAB
# include <stdio.h>
diff --git a/src/comm.c b/src/comm.c
index 504a15763..c907e73ca 100644
--- a/src/comm.c
+++ b/src/comm.c
@@ -30,6 +30,8 @@
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "comm"
+#define AUTHORS "Richard Stallman and David MacKenzie"
+
/* Undefine, to avoid warning about redefinition on some systems. */
#undef min
#define min(x, y) ((x) < (y) ? (x) : (y))
diff --git a/src/csplit.c b/src/csplit.c
index 9e1148c6f..2680d29d5 100644
--- a/src/csplit.c
+++ b/src/csplit.c
@@ -39,6 +39,8 @@
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "csplit"
+#define AUTHORS "Stuart Kemp and David MacKenzie"
+
#ifdef STDC_HEADERS
# include <stdlib.h>
#endif
diff --git a/src/cut.c b/src/cut.c
index 94360c1e0..e8443a9b8 100644
--- a/src/cut.c
+++ b/src/cut.c
@@ -72,6 +72,8 @@
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "cut"
+#define AUTHORS "David Ihnat, David MacKenzie, and Jim Meyering"
+
char *xstrdup ();
#define FATAL_ERROR(Message) \
diff --git a/src/expand.c b/src/expand.c
index d4484842b..035a2dbd5 100644
--- a/src/expand.c
+++ b/src/expand.c
@@ -45,6 +45,8 @@
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "expand"
+#define AUTHORS "David MacKenzie"
+
/* The number of bytes added at a time to the amount of memory
allocated for the output line. */
#define OUTPUT_BLOCK 256
diff --git a/src/fmt.c b/src/fmt.c
index bc1a97a87..73890de15 100644
--- a/src/fmt.c
+++ b/src/fmt.c
@@ -34,6 +34,8 @@
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "fmt"
+#define AUTHORS "Ross Paterson"
+
/* The following parameters represent the program's idea of what is
"best". Adjust to taste, subject to the caveats given. */
diff --git a/src/fold.c b/src/fold.c
index 630a2f8c4..ed0221f1d 100644
--- a/src/fold.c
+++ b/src/fold.c
@@ -31,6 +31,8 @@
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "fold"
+#define AUTHORS "David MacKenzie"
+
/* The name this program was run with. */
char *program_name;
diff --git a/src/head.c b/src/head.c
index 3a890dfa5..91544adae 100644
--- a/src/head.c
+++ b/src/head.c
@@ -38,6 +38,8 @@
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "head"
+#define AUTHORS "David MacKenzie"
+
/* FIXME: someday, make this really *be* `long long'. */
typedef long int U_LONG_LONG;
diff --git a/src/join.c b/src/join.c
index 8073a5636..1e38cb5e7 100644
--- a/src/join.c
+++ b/src/join.c
@@ -39,6 +39,8 @@
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "join"
+#define AUTHORS "Mike Haertel"
+
#define join system_join
/* Undefine, to avoid warning about redefinition on some systems. */
diff --git a/src/md5sum.c b/src/md5sum.c
index 93ae44134..a30769abb 100644
--- a/src/md5sum.c
+++ b/src/md5sum.c
@@ -35,6 +35,8 @@
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "md5sum"
+#define AUTHORS "Ulrich Drepper"
+
/* Most systems do not distinguish between external and internal
text representations. */
/* FIXME: This begs for an autoconf test. */
diff --git a/src/nl.c b/src/nl.c
index 6f686875d..4df571485 100644
--- a/src/nl.c
+++ b/src/nl.c
@@ -36,6 +36,8 @@
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "nl"
+#define AUTHORS "Scott Bartram and David MacKenzie"
+
#ifndef TRUE
# define TRUE 1
# define FALSE 0
diff --git a/src/od.c b/src/od.c
index 42a2cd956..61c3d924a 100644
--- a/src/od.c
+++ b/src/od.c
@@ -31,6 +31,8 @@
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "od"
+#define AUTHORS "Jim Meyering"
+
#if defined(__GNUC__) || defined(STDC_HEADERS)
# include <float.h>
#endif
diff --git a/src/paste.c b/src/paste.c
index d3a648883..9f4a2b863 100644
--- a/src/paste.c
+++ b/src/paste.c
@@ -50,6 +50,8 @@
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "paste"
+#define AUTHORS "David M. Ihnat"
+
/* Indicates that no delimiter should be added in the current position. */
#define EMPTY_DELIM '\0'
diff --git a/src/pr.c b/src/pr.c
index 87729d4a0..4de2064d8 100644
--- a/src/pr.c
+++ b/src/pr.c
@@ -308,6 +308,8 @@
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "pr"
+#define AUTHORS "Pete TerMaat and Roland Huebner"
+
#ifndef TRUE
# define TRUE 1
# define FALSE 0
diff --git a/src/ptx.c b/src/ptx.c
index 06a315b9a..f19f07f68 100644
--- a/src/ptx.c
+++ b/src/ptx.c
@@ -34,6 +34,8 @@
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "ptx"
+#define AUTHORS "François Pinard"
+
/* Number of possible characters in a byte. */
#define CHAR_SET_SIZE 256
diff --git a/src/sort.c b/src/sort.c
index c0c98ead7..780717a62 100644
--- a/src/sort.c
+++ b/src/sort.c
@@ -36,6 +36,8 @@
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "sort"
+#define AUTHORS "Mike Haertel"
+
#if defined ENABLE_NLS && HAVE_LANGINFO_H
# include <langinfo.h>
#endif
diff --git a/src/split.c b/src/split.c
index a350aa875..6d9de4ddb 100644
--- a/src/split.c
+++ b/src/split.c
@@ -36,6 +36,8 @@
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "split"
+#define AUTHORS "Torbjorn Granlund and Richard M. Stallman"
+
int full_write ();
/* The name this program was run with. */
diff --git a/src/sum.c b/src/sum.c
index 8a76c23e0..a543d35f4 100644
--- a/src/sum.c
+++ b/src/sum.c
@@ -32,6 +32,8 @@
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "sum"
+#define AUTHORS "Kayvan Aghaiepour and David MacKenzie"
+
/* The name this program was run with. */
char *program_name;
diff --git a/src/tac.c b/src/tac.c
index dca32bde4..d65a50925 100644
--- a/src/tac.c
+++ b/src/tac.c
@@ -51,6 +51,8 @@ tac -r -s '.\|
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "tac"
+#define AUTHORS "Jay Lepreau and David MacKenzie"
+
#if defined __MSDOS__ || defined _WIN32
/* Define this to non-zero on systems for which the regular mechanism
(of unlinking an open file and expecting to be able to write, seek
diff --git a/src/tail.c b/src/tail.c
index 0f0177a55..6fa4a23dd 100644
--- a/src/tail.c
+++ b/src/tail.c
@@ -40,6 +40,8 @@
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "tail"
+#define AUTHORS "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering"
+
#ifndef OFF_T_MIN
# define OFF_T_MIN TYPE_MINIMUM (off_t)
#endif
diff --git a/src/tr.c b/src/tr.c
index 8e52293e7..1576e1765 100644
--- a/src/tr.c
+++ b/src/tr.c
@@ -33,6 +33,8 @@
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "tr"
+#define AUTHORS "Jim Meyering"
+
#define N_CHARS (UCHAR_MAX + 1)
/* A pointer to a function that returns an int. */
diff --git a/src/tsort.c b/src/tsort.c
index e7fdc349e..e4da14357 100644
--- a/src/tsort.c
+++ b/src/tsort.c
@@ -37,6 +37,8 @@
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "tsort"
+#define AUTHORS "Mark Kettenis"
+
/* Token delimiters when reading from a file. */
#define DELIM " \t\n"
diff --git a/src/unexpand.c b/src/unexpand.c
index 22fa0fd66..e649a6eb0 100644
--- a/src/unexpand.c
+++ b/src/unexpand.c
@@ -48,6 +48,8 @@
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "unexpand"
+#define AUTHORS "David MacKenzie"
+
/* The number of bytes added at a time to the amount of memory
allocated for the output line. */
#define OUTPUT_BLOCK 256
diff --git a/src/uniq.c b/src/uniq.c
index c3457c302..035efafad 100644
--- a/src/uniq.c
+++ b/src/uniq.c
@@ -33,6 +33,8 @@
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "uniq"
+#define AUTHORS "Richard Stallman and David MacKenzie"
+
/* Undefine, to avoid warning about redefinition on some systems. */
#undef min
#define min(x, y) ((x) < (y) ? (x) : (y))
diff --git a/src/wc.c b/src/wc.c
index db2365c96..87c3c55b0 100644
--- a/src/wc.c
+++ b/src/wc.c
@@ -35,6 +35,8 @@
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "wc"
+#define AUTHORS "Paul Rubin and David MacKenzie"
+
/* Size of atomic reads. */
#define BUFFER_SIZE (16 * 1024)