diff options
author | Garrett D'Amore <garrett@nexenta.com> | 2010-07-30 07:06:32 -0700 |
---|---|---|
committer | Garrett D'Amore <garrett@nexenta.com> | 2010-07-30 07:06:32 -0700 |
commit | 4297a3b0d0a35d80f86fff155e288e885a100e6d (patch) | |
tree | bba873e6335d31404bbac128ffa6ebe126b43900 /usr/src/lib/libc/port/stdio/data.c | |
parent | 969bc941052c29943dfb40d55089dc56fa46be57 (diff) | |
download | illumos-gate-4297a3b0d0a35d80f86fff155e288e885a100e6d.tar.gz |
2 We need a fully open libc (no libc_i18n)
Reviewd by: garrett@nexenta.com
Approved by: garrett@nexenta.com
Diffstat (limited to 'usr/src/lib/libc/port/stdio/data.c')
-rw-r--r-- | usr/src/lib/libc/port/stdio/data.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/usr/src/lib/libc/port/stdio/data.c b/usr/src/lib/libc/port/stdio/data.c index 42293e2a75..b38494f3a5 100644 --- a/usr/src/lib/libc/port/stdio/data.c +++ b/usr/src/lib/libc/port/stdio/data.c @@ -27,7 +27,10 @@ /* Copyright (c) 1988 AT&T */ /* All Rights Reserved */ -#pragma ident "%Z%%M% %I% %E% SMI" +/* + * Copyright 2010 Nexenta Systems, Inc. All rights reserved. + * Use is subject to license terms. + */ #pragma weak __iob = _iob @@ -53,7 +56,7 @@ Uchar _smbuf[_NFILE + 1][_SMBFSZ] = {0}; /* shared library compatibility */ #define DEFAULTMBSTATE \ - { NULL, NULL, {0, 0, 0, 0, 0, 0, 0, 0}, 0, {0, 0}} + { 0 } #ifdef _LP64 |