]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
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 38596731c2b70438d5121e6b0ccde8ca26c5a0d4..abc8033e2d2af36a902bee5f4e40052ff55185c6 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 60ed6d4c8da881741bc024991600f2487add2c79..0e6baff1c98d2a2dfbaa3af710fb8d32a3c8c054 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 504a15763e4501275a30c2f2718a57086d0d7ebd..c907e73ca7648ba7d198ee91e5f5423ed6b50f41 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 9e1148c6f0e8eee9cff563566406f8ff5871cf16..2680d29d5a49942f85d8d831a5d2dab69162de5f 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 94360c1e047397f0a1773e4136279b02148dd714..e8443a9b8ddbe7251c3ea2104d93966771ab8d9a 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 d4484842bb3a8cbe7de90fa69250cb8e60794ab5..035a2dbd50735e0d791255c87c81b3276e2ed363 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 bc1a97a877568336b984f161916df3843ddef298..73890de155d425a77b79f02d85e1029ac4262c5c 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 630a2f8c45df4625a6c8ab89ac4f7f4359b918a1..ed0221f1d0440c5bbda7580c1ad43df0fa878595 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 3a890dfa5082e5fee0274b02f2b4b757631e77d5..91544adaef793dee55a2ec570eba431283e45652 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 8073a56364ef42d3bd4d5cffd06fdda3355195e2..1e38cb5e7c59090a20c1ea2f1930d4fdcf5c9eb0 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 93ae441341b5d0209e2909279f4e0d6d02218799..a30769abb82a67cd98645805021f4488d1356467 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 6f686875dec156fee5ce43861304f82be485b258..4df57148524fc43c25ba18d29e6c554c174390de 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 42a2cd956c1218344c58841a3983f602e7aa15c0..61c3d924a5818fb473ddd51fb09743731f9eaabd 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 d3a648883643b89630ec030c87bb6c4f313f941e..9f4a2b8633b47542045bdd9f82b09aef87a6131f 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 87729d4a08f92785bc88c9ecac70a4db686bd1af..4de2064d881d0d872ccc735f8b7ea23ca19af002 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 06a315b9a01a456ad72c7ecaad14cb5ec7d3bdf5..f19f07f68499ba38cb74901f7b6e426553e78f85 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 c0c98ead781b86778ca83ad795b42528296b73c4..780717a6205e624b47f67201a3d6db7bbaa15a6e 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 a350aa8759516b6bafd7fc0ff0391f48d718b6ed..6d9de4ddb9b71b30e6b5532ce301c75396172217 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 8a76c23e0cf077d49b8c1467cfecb930246b61f3..a543d35f4731b2b9e02c5e9ff649310208f67c2f 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 dca32bde45fdf1ecbbea84cc8bcaadf7e434b10e..d65a50925b6b94163cf1c8042ca83f2a7dcf00aa 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 0f0177a551ad1d90c5b1183ca108add2cba8290c..6fa4a23dda15c4906a71bb4b7336fd29941de7e4 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 8e52293e7400f6daae3247a8c88c00f69b6a3704..1576e17655f2d79f5c02a2a385f399e8fde8465a 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 e7fdc349e6d0250db31f056fe28019d24644ba8e..e4da143574daa8bb15a131ebd94189dc78aea568 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 22fa0fd664cbb34255bd48c656f7a50edc50c24d..e649a6eb0120df632142caec687fd47e21f87a6d 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 c3457c302b1e98684ef31335b9b315337014c2aa..035efafad8531021c5d242c7773422db259aa3a6 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 db2365c96f1b9eabc1d5f616e49b3c74190f1738..87c3c55b04e14201c404047a949e4c19477ebabd 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)