read-file.c: tweak syntax
authorJim Meyering <meyering@redhat.com>
Mon, 27 Dec 2010 10:05:00 +0000 (11:05 +0100)
committerJim Meyering <meyering@redhat.com>
Mon, 27 Dec 2010 10:23:29 +0000 (11:23 +0100)
* lib/read-file.c (fread_file): Remove space after "*" in function
definitions.

ChangeLog
lib/read-file.c

index 7b29f6b..0c34cf2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2010-12-27  Jim Meyering  <meyering@redhat.com>
+
+       read-file.c: tweak syntax
+       * lib/read-file.c (fread_file): Remove space after "*" in function
+       definitions.
+
 2010-12-27  Bruno Haible  <bruno@clisp.org>
 
        times test: Avoid gcc warnings on OSF/1.
index ba3f172..d2c5370 100644 (file)
@@ -41,7 +41,7 @@
    *LENGTH.  On errors, *LENGTH is undefined, errno preserves the
    values set by system functions (if any), and NULL is returned.  */
 char *
-fread_file (FILE * stream, size_t * length)
+fread_file (FILE *stream, size_t *length)
 {
   char *buf = NULL;
   size_t alloc = BUFSIZ;
@@ -136,7 +136,7 @@ fread_file (FILE * stream, size_t * length)
 }
 
 static char *
-internal_read_file (const char *filename, size_t * length, const char *mode)
+internal_read_file (const char *filename, size_t *length, const char *mode)
 {
   FILE *stream = fopen (filename, mode);
   char *out;
@@ -170,7 +170,7 @@ internal_read_file (const char *filename, size_t * length, const char *mode)
    undefined, errno preserves the values set by system functions (if
    any), and NULL is returned.  */
 char *
-read_file (const char *filename, size_t * length)
+read_file (const char *filename, size_t *length)
 {
   return internal_read_file (filename, length, "r");
 }
@@ -183,7 +183,7 @@ read_file (const char *filename, size_t * length)
    preserves the values set by system functions (if any), and NULL is
    returned.  */
 char *
-read_binary_file (const char *filename, size_t * length)
+read_binary_file (const char *filename, size_t *length)
 {
   return internal_read_file (filename, length, "rb");
 }