GNU text utilities TEXTUTILS-1_10
authorJim Meyering <jim@meyering.net>
Fri, 4 Nov 1994 16:33:12 +0000 (16:33 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 4 Nov 1994 16:33:12 +0000 (16:33 +0000)
lib/linebuffer.h

index bb64c27..265431a 100644 (file)
@@ -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 *));