diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 1995-10-26 10:57:52 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 1995-10-26 10:57:52 +0000 |
| commit | 2bf4b9cf1faccbf13fc22e030888af62cc043620 (patch) | |
| tree | fb981b4bdd911006ae4733cd0634370b749bea5a /bin | |
| parent | f5bd01c69ef369fe7912c3281dd693eb434614e3 (diff) | |
Notes
Diffstat (limited to 'bin')
| -rw-r--r-- | bin/ps/ps.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/ps/ps.c b/bin/ps/ps.c index f7f3485cde35..fae17b2cb736 100644 --- a/bin/ps/ps.c +++ b/bin/ps/ps.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ps.c,v 1.7 1995/05/30 00:07:05 rgrimes Exp $ + * $Id: ps.c,v 1.8 1995/10/23 21:06:31 ache Exp $ */ #ifndef lint @@ -117,7 +117,8 @@ main(argc, argv) int prtheader, wflag, what, xflg; char *nlistf, *memf, *swapf, errbuf[256]; - (void) setlocale(LC_CTYPE|LC_TIME, ""); + (void) setlocale(LC_ALL, ""); + if ((ioctl(STDOUT_FILENO, TIOCGWINSZ, (char *)&ws) == -1 && ioctl(STDERR_FILENO, TIOCGWINSZ, (char *)&ws) == -1 && ioctl(STDIN_FILENO, TIOCGWINSZ, (char *)&ws) == -1) || |
