1#!/bin/sh
2# Set locale-related environment variables so we get consistent
3# message translations, time formats, sort orderings, etc.
4
5LC_ALL=C
6export LC_ALL
7unset LANGUAGE NLSPATH
8
9# These settings shouldn't matter, but unset them anyway just in case.
10unset LANG LC_COLLATE LC_CTYPE LC_MESSAGES LC_MONETARY LC_NUMERIC LC_TIME
11