From 3d9dacd0b6e872d8caa7fd2c757767b3288d80c3 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 8 Sep 2007 19:25:52 +0000 Subject: [PATCH] Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h * lib/fpending.h: Rename from __fpending.h. * lib/fpending.c: Rename from __fpending.c. Include "fpending.h", not "__fpending.h". * lib/__fpending.h, lib/__fpending.c: Remove files. * modules/fpending (Files): Reflect new file names. * lib/close-stream.c: Include "fpending.h", not "__fpending.h". --- ChangeLog | 10 ++++++++++ lib/close-stream.c | 4 ++-- lib/{__fpending.c => fpending.c} | 6 +++--- lib/{__fpending.h => fpending.h} | 0 modules/fpending | 6 +++--- 5 files changed, 18 insertions(+), 8 deletions(-) rename lib/{__fpending.c => fpending.c} (85%) rename lib/{__fpending.h => fpending.h} (100%) diff --git a/ChangeLog b/ChangeLog index 4fab78f25f..6b623933ab 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2007-09-08 Jim Meyering + + Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h + * lib/fpending.h: Rename from __fpending.h. + * lib/fpending.c: Rename from __fpending.c. + Include "fpending.h", not "__fpending.h". + * lib/__fpending.h, lib/__fpending.c: Remove files. + * modules/fpending (Files): Reflect new file names. + * lib/close-stream.c: Include "fpending.h", not "__fpending.h". + 2007-09-08 Bruno Haible * m4/inttypes-h.m4: Remove stub file. diff --git a/lib/close-stream.c b/lib/close-stream.c index 72d0d6816c..2a1f8a4a0b 100644 --- a/lib/close-stream.c +++ b/lib/close-stream.c @@ -1,6 +1,6 @@ /* Close a stream, with nicer error checking than fclose's. - Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004, 2006 Free + Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2007 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify @@ -24,7 +24,7 @@ #include #include -#include "__fpending.h" +#include "fpending.h" #if USE_UNLOCKED_IO # include "unlocked-io.h" diff --git a/lib/__fpending.c b/lib/fpending.c similarity index 85% rename from lib/__fpending.c rename to lib/fpending.c index 221aee69de..4b982ba4f4 100644 --- a/lib/__fpending.c +++ b/lib/fpending.c @@ -1,5 +1,5 @@ -/* __fpending.c -- return the number of pending output bytes on a stream - Copyright (C) 2000, 2004, 2006 Free Software Foundation, Inc. +/* fpending.c -- return the number of pending output bytes on a stream + Copyright (C) 2000, 2004, 2006, 2007 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 @@ -19,7 +19,7 @@ #include -#include "__fpending.h" +#include "fpending.h" /* Return the number of pending (aka buffered, unflushed) bytes on the stream, FP, that is open for writing. */ diff --git a/lib/__fpending.h b/lib/fpending.h similarity index 100% rename from lib/__fpending.h rename to lib/fpending.h diff --git a/modules/fpending b/modules/fpending index abdcadaf46..6b67cc3fa0 100644 --- a/modules/fpending +++ b/modules/fpending @@ -2,8 +2,8 @@ Description: Determine the number of bytes waiting in the output buffer of a stream. Files: -lib/__fpending.h -lib/__fpending.c +lib/fpending.h +lib/fpending.c m4/fpending.m4 Depends-on: @@ -14,7 +14,7 @@ gl_FUNC_FPENDING Makefile.am: Include: -"__fpending.h" +"fpending.h" License: GPL -- 2.30.2