changeset 756:98c1dec0f42d

.
author Jim Meyering <jim@meyering.net>
date Tue, 29 Oct 1996 13:40:56 +0000
parents f1fa143cd419
children 44ac216afb5b
files lib/linebuffer.h lib/memcasecmp.h lib/stripslash.c
diffstat 3 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/lib/linebuffer.h
+++ b/lib/linebuffer.h
@@ -12,8 +12,8 @@
    GNU General Public License for more details.
 
    You should have received a copy of the GNU General Public License
-   along with this program; if not, write to the Free Software
-   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
+   along with this program; if not, write to the Free Software Foundation,
+   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
 /* A `struct linebuffer' holds a line of text. */
 
@@ -26,9 +26,9 @@
 
 #undef PARAMS
 #if defined (__STDC__) && __STDC__
-# define PARAMS(x) x
+# define PARAMS(Args) Args
 #else
-# define PARAMS(x) ()
+# define PARAMS(Args) ()
 #endif
 
 /* Initialize linebuffer LINEBUFFER for use. */
--- a/lib/memcasecmp.h
+++ b/lib/memcasecmp.h
@@ -1,8 +1,8 @@
 #undef PARAMS
 #if defined (__STDC__) && __STDC__
-# define PARAMS(args) args
+# define PARAMS(Args) Args
 #else
-# define PARAMS(args) ()
+# define PARAMS(Args) ()
 #endif
 
 int
--- a/lib/stripslash.c
+++ b/lib/stripslash.c
@@ -15,7 +15,7 @@
    along with this program; if not, write to the Free Software Foundation,
    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
-#ifdef HAVE_CONFIG_H
+#if HAVE_CONFIG_H
 # include <config.h>
 #endif