1166124Srafan#!/bin/sh
2166124Srafan# $Id: csort,v 1.2 2002/10/19 21:42:09 tom Exp $
3166124Srafan##############################################################################
4166124Srafan# Copyright (c) 2002 Free Software Foundation, Inc.                          #
5166124Srafan#                                                                            #
6166124Srafan# Permission is hereby granted, free of charge, to any person obtaining a    #
7166124Srafan# copy of this software and associated documentation files (the "Software"), #
8166124Srafan# to deal in the Software without restriction, including without limitation  #
9166124Srafan# the rights to use, copy, modify, merge, publish, distribute, distribute    #
10166124Srafan# with modifications, sublicense, and/or sell copies of the Software, and to #
11166124Srafan# permit persons to whom the Software is furnished to do so, subject to the  #
12166124Srafan# following conditions:                                                      #
13166124Srafan#                                                                            #
14166124Srafan# The above copyright notice and this permission notice shall be included in #
15166124Srafan# all copies or substantial portions of the Software.                        #
16166124Srafan#                                                                            #
17166124Srafan# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
18166124Srafan# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,   #
19166124Srafan# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL    #
20166124Srafan# THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER      #
21166124Srafan# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING    #
22166124Srafan# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER        #
23166124Srafan# DEALINGS IN THE SOFTWARE.                                                  #
24166124Srafan#                                                                            #
25166124Srafan# Except as contained in this notice, the name(s) of the above copyright     #
26166124Srafan# holders shall not be used in advertising or otherwise to promote the sale, #
27166124Srafan# use or other dealings in this Software without prior written               #
28166124Srafan# authorization.                                                             #
29166124Srafan##############################################################################
30166124Srafan#
31166124Srafan# override anything that might cause 'sort' to do the wrong thing...
32166124SrafanLANG=C;		export LANG
33166124SrafanLANGUAGE=C;	export LANGUAGE
34166124SrafanLC_ALL=C;	export LC_ALL
35166124SrafanLC_CTYPE=C;	export LC_CTYPE
36166124Srafansort $*
37