diff options
author | ache <ache@FreeBSD.org> | 1996-10-31 14:44:24 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1996-10-31 14:44:24 +0000 |
commit | d7aa9c874c79b9b4d426bac46b21a9962aa12784 (patch) | |
tree | 61c060a03e10cba181219de33ab5936b3e6e3af4 /gnu | |
parent | 94df0bceba827e932ac65f6ea2b24f78399e3137 (diff) | |
download | FreeBSD-src-d7aa9c874c79b9b4d426bac46b21a9962aa12784.zip FreeBSD-src-d7aa9c874c79b9b4d426bac46b21a9962aa12784.tar.gz |
Uncomment static from collate_range_cmp, no more in locale.h
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/sort/sort.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/sort/sort.c b/gnu/usr.bin/sort/sort.c index bb391a0..9457e94 100644 --- a/gnu/usr.bin/sort/sort.c +++ b/gnu/usr.bin/sort/sort.c @@ -200,7 +200,7 @@ static int collates[UCHAR_LIM]; #define COLLDIFF(A, B) (collates[UCHAR (A)] - collates[UCHAR (B)]) -/* static */ int +static int collate_range_cmp (a, b) int a, b; { |