Insert AUTHORS definition.
authorJim Meyering <jim@meyering.net>
Sat, 3 Apr 1999 05:22:05 +0000 (05:22 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 3 Apr 1999 05:22:05 +0000 (05:22 +0000)
26 files changed:
src/cat.c
src/cksum.c
src/comm.c
src/csplit.c
src/cut.c
src/expand.c
src/fmt.c
src/fold.c
src/head.c
src/join.c
src/md5sum.c
src/nl.c
src/od.c
src/paste.c
src/pr.c
src/ptx.c
src/sort.c
src/split.c
src/sum.c
src/tac.c
src/tail.c
src/tr.c
src/tsort.c
src/unexpand.c
src/uniq.c
src/wc.c

index 3859673..abc8033 100644 (file)
--- 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))
index 60ed6d4..0e6baff 100644 (file)
@@ -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>
index 504a157..c907e73 100644 (file)
@@ -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))
index 9e1148c..2680d29 100644 (file)
@@ -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
index 94360c1..e8443a9 100644 (file)
--- 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)                                           \
index d448484..035a2db 100644 (file)
@@ -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
index bc1a97a..73890de 100644 (file)
--- 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.  */
 
index 630a2f8..ed0221f 100644 (file)
@@ -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;
 
index 3a890df..91544ad 100644 (file)
@@ -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;
 
index 8073a56..1e38cb5 100644 (file)
@@ -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.  */
index 93ae441..a30769a 100644 (file)
@@ -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.  */
index 6f68687..4df5714 100644 (file)
--- 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
index 42a2cd9..61c3d92 100644 (file)
--- 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
index d3a6488..9f4a2b8 100644 (file)
@@ -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'
 
index 87729d4..4de2064 100644 (file)
--- a/src/pr.c
+++ b/src/pr.c
 /* 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
index 06a315b..f19f07f 100644 (file)
--- 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
 
index c0c98ea..780717a 100644 (file)
@@ -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
index a350aa8..6d9de4d 100644 (file)
@@ -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. */
index 8a76c23..a543d35 100644 (file)
--- 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;
 
index dca32bd..d65a509 100644 (file)
--- 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
index 0f0177a..6fa4a23 100644 (file)
@@ -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
index 8e52293..1576e17 100644 (file)
--- 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.  */
index e7fdc34..e4da143 100644 (file)
@@ -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"
 
index 22fa0fd..e649a6e 100644 (file)
@@ -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
index c3457c3..035efaf 100644 (file)
@@ -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))
index db2365c..87c3c55 100644 (file)
--- 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)