$NetBSD: patch-ac,v 1.1 2006/01/15 18:28:32 joerg Exp $

--- fpr/fpr.c.orig	1994-05-27 12:31:21.000000000 +0000
+++ fpr/fpr.c
@@ -44,6 +44,7 @@ static char copyright[] =
 static char sccsid[] = "@(#)fpr.c	8.1 (Berkeley) 6/6/93";
 #endif /* not lint */
 
+#include <stdlib.h>
 #include <stdio.h>
 
 #define BLANK ' '
@@ -80,10 +81,7 @@ COLUMN *line;
 int maxpos;
 int maxcol;
 
-extern char *malloc();
-extern char *calloc();
-extern char *realloc();
-
+void my_gettext(void);
 
 
 main()
@@ -124,7 +122,7 @@ main()
 
   while ( ! ateof)
     {
-      gettext();
+      my_gettext();
       ch = getchar();
       if (ch == EOF)
 	{
@@ -209,8 +207,8 @@ init()
 }
 
 
-
-gettext()
+void
+my_gettext(void)
 {
   register int i;
   register char ateol;
