diff options
author | Jim Meyering <jim@meyering.net> | 2005-03-28 19:28:33 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-03-28 19:28:33 +0000 |
commit | f00c1cbeb85e49773928767e118a012298fa6619 (patch) | |
tree | 5ff1fb0bee5ad5fe74ea22c2030d4a4e8bcb5445 /src | |
parent | 3a14f695328f325676fbef914a57c34172fd7cf5 (diff) | |
download | coreutils-f00c1cbeb85e49773928767e118a012298fa6619.tar.xz |
(get_width_format) [HAVE_RINT && HAVE_MODF && HAVE_FLOOR]:
Add `void' to make this an ANSI-style function declaration.
Diffstat (limited to 'src')
-rw-r--r-- | src/seq.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ /* seq - print sequence of numbers to standard output. - 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 @@ -203,7 +203,7 @@ print_numbers (const char *fmt) will format to strings of the same width. */ static char * -get_width_format () +get_width_format (void) { static char buffer[256]; int full_width; |