summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1994-11-04 16:33:12 +0000
committerJim Meyering <jim@meyering.net>1994-11-04 16:33:12 +0000
commit2e9d74f960fe9c7d72044573c9e4c7a8f67a3f5b (patch)
treea7f5b621dba8e60224e7733b1726cdfeb60839eb
parentf303c03fdc429720be80defffe6b70c0bae07653 (diff)
downloadgnulib-2e9d74f960fe9c7d72044573c9e4c7a8f67a3f5b.tar.gz
GNU text utilitiesTEXTUTILS-1_10
-rw-r--r--lib/linebuffer.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/linebuffer.h b/lib/linebuffer.h
index bb64c271c8..265431ad7c 100644
--- a/lib/linebuffer.h
+++ b/lib/linebuffer.h
@@ -25,18 +25,18 @@ struct linebuffer
};
#if defined (__STDC__) && __STDC__
-#define _P(x) x
+#define __P(x) x
#else
-#define _P(x) ()
+#define __P(x) ()
#endif
/* Initialize linebuffer LINEBUFFER for use. */
-void initbuffer _P ((struct linebuffer *linebuffer));
+void initbuffer __P ((struct linebuffer *linebuffer));
/* Read an arbitrarily long line of text from STREAM into LINEBUFFER.
Remove any newline. Does not null terminate.
Return LINEBUFFER, except at end of file return 0. */
-struct linebuffer *readline _P ((struct linebuffer *linebuffer, FILE *stream));
+struct linebuffer *readline __P ((struct linebuffer *linebuffer, FILE *stream));
/* Free linebuffer LINEBUFFER and its data, all allocated with malloc. */
-void freebuffer _P ((struct linebuffer *));
+void freebuffer __P ((struct linebuffer *));