diff options
author | Jerry Jelinek <jerry.jelinek@joyent.com> | 2017-05-31 11:35:39 +0000 |
---|---|---|
committer | Jerry Jelinek <jerry.jelinek@joyent.com> | 2017-05-31 11:35:39 +0000 |
commit | 4532f01643c46705f703bf694c09bb32348e8000 (patch) | |
tree | f07e539bc380cc9a86a7d52e538c31e0772f59d6 /usr/src/lib/libc | |
parent | 539be8d67e75fbd3dbdebfb93ba8ec220779f0dc (diff) | |
parent | afc62b4b94eec9d9cec1ba14fd65fcf304325e7f (diff) | |
download | illumos-joyent-4532f01643c46705f703bf694c09bb32348e8000.tar.gz |
[illumos-gate merge]
commit afc62b4b94eec9d9cec1ba14fd65fcf304325e7f
6961 64-bit octal printf may overflow internal buffer
commit a5ae00988088f44766fb28f575751986b222edbc
8298 snoop: dhcp option_types list is missing strings
commit 5cb835500e9cd5a521ccc0bbd3d2d15ea11a997f
8191 in.routed: misleading-indentation
commit 92e800cb34cfa1782db2b305db525b6853deb198
8162 cscope-fast: this statement may fall through
commit a4e73d5d60e566669c550027fae2b1d87b4be2b4
8240 AVX512 dis - opmask instruction support
Diffstat (limited to 'usr/src/lib/libc')
-rw-r--r-- | usr/src/lib/libc/port/print/print.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr/src/lib/libc/port/print/print.h b/usr/src/lib/libc/port/print/print.h index 427d32677a..bbc2c8ee7d 100644 --- a/usr/src/lib/libc/port/print/print.h +++ b/usr/src/lib/libc/port/print/print.h @@ -31,8 +31,6 @@ #ifndef _PRINT_H #define _PRINT_H -#pragma ident "%Z%%M% %I% %E% SMI" /* SVr4.0 1.9 */ - #include "file64.h" #include <floatingpoint.h> #include <thread.h> @@ -63,7 +61,7 @@ __qaconvert(long double *arg, int ndigits, int *exp, int *sign, char *buf); #define MAXDIGS 11 /* Maximum number of digits in any long long representation */ -#define MAXLLDIGS 21 +#define MAXLLDIGS 22 /* Maximum total number of digits in E format */ #define MAXECVT (DECIMAL_STRING_LENGTH-1) |