1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- Added C99 checks to "complex_headers.h".

- No longer uses a local copysign() function in "math_kernel_scalbn.c".

- Fixed an assignment which actually came out as a comparison in "stdio_vfscanf.c".


git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14946 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2005-05-12 14:50:06 +00:00
parent c5087c78ce
commit d0a4e057bc
3 changed files with 5 additions and 16 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: stdio_vfscanf.c,v 1.13 2005-05-08 11:27:26 obarthel Exp $
* $Id: stdio_vfscanf.c,v 1.14 2005-05-12 14:50:06 obarthel Exp $
*
* :ts=4
*
@ -309,7 +309,7 @@ vfscanf(FILE *stream, const char *format, va_list arg)
/* Check for long long parameters. */
if(parameter_size == parameter_size_long && c == 'l')
{
parameter_size == parameter_size_long_long;
parameter_size = parameter_size_long_long;
format++;