diff options
author | nate <nate@FreeBSD.org> | 1993-11-12 07:05:54 +0000 |
---|---|---|
committer | nate <nate@FreeBSD.org> | 1993-11-12 07:05:54 +0000 |
commit | 0ed72634295eab0018dcb17d89c196206eb60c8a (patch) | |
tree | ccdf94118f89667bc5481656e35a277126890ddc /gnu/usr.bin/diff/normal.c | |
parent | fbf13a99b770ab2f131e13a138ec4d9575a70308 (diff) | |
download | FreeBSD-src-0ed72634295eab0018dcb17d89c196206eb60c8a.zip FreeBSD-src-0ed72634295eab0018dcb17d89c196206eb60c8a.tar.gz |
Updated to GNU diffutils 2.6
Diffstat (limited to 'gnu/usr.bin/diff/normal.c')
-rw-r--r-- | gnu/usr.bin/diff/normal.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gnu/usr.bin/diff/normal.c b/gnu/usr.bin/diff/normal.c index a0cf479..4d9e23c 100644 --- a/gnu/usr.bin/diff/normal.c +++ b/gnu/usr.bin/diff/normal.c @@ -1,5 +1,5 @@ /* Normal-format output routines for GNU DIFF. - Copyright (C) 1988, 1989 Free Software Foundation, Inc. + Copyright (C) 1988, 1989, 1993 Free Software Foundation, Inc. This file is part of GNU DIFF. @@ -20,10 +20,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "diff.h" -int change_letter (); -void print_normal_hunk (); -void print_number_range (); -struct change *find_change (); +static void print_normal_hunk PARAMS((struct change *)); /* Print the edit-script SCRIPT as a normal diff. INF points to an array of descriptions of the two files. */ @@ -39,7 +36,7 @@ print_normal_script (script) This is a contiguous portion of a complete edit script, describing changes in consecutive lines. */ -void +static void print_normal_hunk (hunk) struct change *hunk; { |