diff options
Diffstat (limited to 'usr/src/lib/libc/port/stdio/vscanf.c')
-rw-r--r-- | usr/src/lib/libc/port/stdio/vscanf.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/usr/src/lib/libc/port/stdio/vscanf.c b/usr/src/lib/libc/port/stdio/vscanf.c index 1ca2e8db2d..c41093ee7a 100644 --- a/usr/src/lib/libc/port/stdio/vscanf.c +++ b/usr/src/lib/libc/port/stdio/vscanf.c @@ -20,7 +20,7 @@ */ /* - * Copyright 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright 2008 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -29,14 +29,13 @@ #pragma ident "%Z%%M% %I% %E% SMI" - #ifndef _C89_INTMAX32 -#pragma weak vscanf = _vscanf -#pragma weak vfscanf = _vfscanf -#pragma weak vsscanf = _vsscanf +#pragma weak _vscanf = vscanf +#pragma weak _vfscanf = vfscanf +#pragma weak _vsscanf = vsscanf #endif -#include "synonyms.h" +#include "lint.h" #include "file64.h" #include "mtlib.h" #include <stdio.h> |