diff options
| author | thorpej <thorpej@NetBSD.org> | 2002-05-30 17:46:24 +0000 |
|---|---|---|
| committer | thorpej <thorpej@NetBSD.org> | 2002-05-30 17:46:24 +0000 |
| commit | f9fe308928d13d8f3bceb4e463da7c09dc786ffd (patch) | |
| tree | 684833c5941e054b2ed82dc114fc124a1a98cad3 /usr.bin/fpr | |
| parent | d22677c6bc4217270bb13697182b796b71665005 (diff) | |
Rename local function "gettext" to "get_text" to avoid conflict
with internal prototypes/attributes for the gettext() int'lzation
function that gcc-current has.
Diffstat (limited to 'usr.bin/fpr')
| -rw-r--r-- | usr.bin/fpr/fpr.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/fpr/fpr.c b/usr.bin/fpr/fpr.c index a9956b4678e..427b9a35348 100644 --- a/usr.bin/fpr/fpr.c +++ b/usr.bin/fpr/fpr.c @@ -1,4 +1,4 @@ -/* $NetBSD: fpr.c,v 1.4 1997/10/18 15:05:47 lukem Exp $ */ +/* $NetBSD: fpr.c,v 1.5 2002/05/30 17:46:24 thorpej Exp $ */ /* * Copyright (c) 1989, 1993 @@ -46,7 +46,7 @@ __COPYRIGHT("@(#) Copyright (c) 1989, 1993\n\ #if 0 static char sccsid[] = "@(#)fpr.c 8.1 (Berkeley) 6/6/93"; #endif -__RCSID("$NetBSD: fpr.c,v 1.4 1997/10/18 15:05:47 lukem Exp $"); +__RCSID("$NetBSD: fpr.c,v 1.5 2002/05/30 17:46:24 thorpej Exp $"); #endif /* not lint */ #include <err.h> @@ -87,7 +87,7 @@ int maxpos; int maxcol; void flush __P((void)); -void gettext __P((void)); +void get_text __P((void)); void init __P((void)); int main __P((int, char **)); void nospace __P((void)); @@ -134,7 +134,7 @@ main(argc, argv) } while (!ateof) { - gettext(); + get_text(); ch = getchar(); if (ch == EOF) { flush(); @@ -210,7 +210,7 @@ init() } void -gettext() +get_text() { int i; char ateol; |
