]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Remove `register' keyword.
authorJim Meyering <jim@meyering.net>
Sun, 6 Mar 2005 16:30:45 +0000 (16:30 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 6 Mar 2005 16:30:45 +0000 (16:30 +0000)
src/cksum.c
src/cut.c
src/fmt.c
src/fold.c

index 8f0d86ba99fac893104da034361115d5a955c73c..d07aa37177646c45b471b7205c7a46ff8777f093 100644 (file)
@@ -1,5 +1,5 @@
 /* cksum -- calculate and print POSIX checksums and sizes of files
-   Copyright (C) 92, 1995-2004 Free Software Foundation, Inc.
+   Copyright (C) 92, 1995-2005 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
@@ -191,7 +191,7 @@ cksum (const char *file, bool print_name)
   uint_fast32_t crc = 0;
   uintmax_t length = 0;
   size_t bytes_read;
-  register FILE *fp;
+  FILE *fp;
   char length_buf[INT_BUFSIZE_BOUND (uintmax_t)];
   char const *hp;
 
index 9c331f68c3c5067e50578edf6c6088df12b64471..f88bba04e486421724345225f78fdeeaaba9b4ef 100644 (file)
--- a/src/cut.c
+++ b/src/cut.c
@@ -1,5 +1,5 @@
 /* cut - remove parts of lines of files
-   Copyright (C) 1997-2004 Free Software Foundation, Inc.
+   Copyright (C) 1997-2005 Free Software Foundation, Inc.
    Copyright (C) 1984 David M. Ihnat
 
    This program is free software; you can redistribute it and/or modify
@@ -537,7 +537,7 @@ cut_bytes (FILE *stream)
   print_delimiter = false;
   while (1)
     {
-      register int c;          /* Each character from the file. */
+      int c;           /* Each character from the file. */
 
       c = getc (stream);
 
index 392b9b5bab6262863c3c66fd1d88c654b559f7ce..26e1db0eea2b819738fd8fbe2141fb27d1ab5dbb 100644 (file)
--- a/src/fmt.c
+++ b/src/fmt.c
@@ -1,5 +1,5 @@
 /* GNU fmt -- simple text formatter.
-   Copyright (C) 1994-2004 Free Software Foundation, Inc.
+   Copyright (C) 1994-2005 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
@@ -318,7 +318,7 @@ static const struct option long_options[] =
 };
 
 int
-main (register int argc, register char **argv)
+main (int argc, char **argv)
 {
   int optchar;
   bool ok = true;
@@ -443,9 +443,9 @@ main (register int argc, register char **argv)
    and record the lengths of the prefix and the space trimmed.  */
 
 static void
-set_prefix (register char *p)
+set_prefix (char *p)
 {
-  register char *s;
+  char *s;
 
   prefix_lead_space = 0;
   while (*p == ' ')
@@ -528,7 +528,7 @@ set_other_indent (bool same_paragraph)
 static bool
 get_paragraph (FILE *f)
 {
-  register int c;
+  int c;
 
   last_line_length = 0;
   c = next_char;
@@ -602,9 +602,9 @@ get_paragraph (FILE *f)
    Return the character (\n or EOF) ending the line.  */
 
 static int
-copy_rest (FILE *f, register int c)
+copy_rest (FILE *f, int c)
 {
-  register const char *s;
+  const char *s;
 
   out_column = 0;
   if (in_column > next_prefix_indent && c != '\n' && c != EOF)
@@ -627,7 +627,7 @@ copy_rest (FILE *f, register int c)
    otherwise false.  */
 
 static bool
-same_para (register int c)
+same_para (int c)
 {
   return (next_prefix_indent == prefix_indent
          && in_column >= next_prefix_indent + prefix_full_length
@@ -643,11 +643,11 @@ same_para (register int c)
    Return the first non-blank character of the next line.  */
 
 static int
-get_line (FILE *f, register int c)
+get_line (FILE *f, int c)
 {
   int start;
-  register char *end_of_parabuf;
-  register WORD *end_of_word;
+  char *end_of_parabuf;
+  WORD *end_of_word;
 
   end_of_parabuf = &parabuf[MAXCHARS];
   end_of_word = &word[MAXWORDS - 2];
@@ -701,7 +701,7 @@ get_line (FILE *f, register int c)
 static int
 get_prefix (FILE *f)
 {
-  register int c;
+  int c;
 
   in_column = 0;
   c = get_space (f, getc (f));
@@ -729,7 +729,7 @@ get_prefix (FILE *f)
    in_column up-to-date.  Return first non-blank character.  */
 
 static int
-get_space (FILE *f, register int c)
+get_space (FILE *f, int c)
 {
   for (;;)
     {
@@ -749,7 +749,7 @@ get_space (FILE *f, register int c)
 /* Set extra fields in word W describing any attached punctuation.  */
 
 static void
-check_punctuation (register WORD *w)
+check_punctuation (WORD *w)
 {
   char const *start = w->text;
   char const *finish = start + (w->length - 1);
@@ -769,7 +769,7 @@ static void
 flush_paragraph (void)
 {
   WORD *split_point;
-  register WORD *w;
+  WORD *w;
   int shift;
   COST best_break;
 
@@ -832,9 +832,9 @@ flush_paragraph (void)
 static void
 fmt_paragraph (void)
 {
-  register WORD *start, *w;
-  register int len;
-  register COST wcost, best;
+  WORD *start, *w;
+  int len;
+  COST wcost, best;
   int saved_length;
 
   word_limit->best_cost = 0;
@@ -886,9 +886,9 @@ fmt_paragraph (void)
    word THIS.  */
 
 static COST
-base_cost (register WORD *this)
+base_cost (WORD *this)
 {
-  register COST cost;
+  COST cost;
 
   cost = LINE_COST;
 
@@ -919,10 +919,10 @@ base_cost (register WORD *this)
    depends on LEN, the length of the line beginning there.  */
 
 static COST
-line_cost (register WORD *next, register int len)
+line_cost (WORD *next, int len)
 {
-  register int n;
-  register COST cost;
+  int n;
+  COST cost;
 
   if (next == word_limit)
     return 0;
@@ -940,9 +940,9 @@ line_cost (register WORD *next, register int len)
    FINISH, which must be in the next_break chain from word.  */
 
 static void
-put_paragraph (register WORD *finish)
+put_paragraph (WORD *finish)
 {
-  register WORD *w;
+  WORD *w;
 
   put_line (word, first_indent);
   for (w = word->next_break; w != finish; w = w->next_break)
@@ -953,9 +953,9 @@ put_paragraph (register WORD *finish)
    INDENT, including the prefix (if any).  */
 
 static void
-put_line (register WORD *w, int indent)
+put_line (WORD *w, int indent)
 {
-  register WORD *endline;
+  WORD *endline;
 
   out_column = 0;
   put_space (prefix_indent);
@@ -977,10 +977,10 @@ put_line (register WORD *w, int indent)
 /* Output to stdout the word W.  */
 
 static void
-put_word (register WORD *w)
+put_word (WORD *w)
 {
-  register const char *s;
-  register int n;
+  const char *s;
+  int n;
 
   s = w->text;
   for (n = w->length; n != 0; n--)
@@ -993,7 +993,7 @@ put_word (register WORD *w)
 static void
 put_space (int space)
 {
-  register int space_target, tab_target;
+  int space_target, tab_target;
 
   space_target = out_column + space;
   if (tabs)
index f6fce6a0155903b290965836aef5c13d33aaf335..3ca3d0ff72ae13f2ea5ac6d8fd0a67b30d47295f 100644 (file)
@@ -1,5 +1,5 @@
 /* fold -- wrap each input line to fit in specified width.
-   Copyright (C) 91, 1995-2004 Free Software Foundation, Inc.
+   Copyright (C) 91, 1995-2005 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
@@ -123,7 +123,7 @@ static bool
 fold_file (char *filename, size_t width)
 {
   FILE *istream;
-  register int c;
+  int c;
   size_t column = 0;           /* Screen column where next char will go. */
   size_t offset_out = 0;       /* Index in `line_out' for next char. */
   static char *line_out = NULL;