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

- The printf() family stripped trailing zeroes from the integer part

of %g output. Fixed.


git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@15078 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2006-01-02 13:23:33 +00:00
parent 23c2091ab4
commit e833477448
5 changed files with 37 additions and 24 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: select.h,v 1.4 2005-11-27 10:28:16 obarthel Exp $
* $Id: select.h,v 1.5 2006-01-02 13:23:33 obarthel Exp $
*
* :ts=4
*
@ -63,6 +63,14 @@ extern "C" {
/****************************************************************************/
/*
* In case the select() data structures and macros are already
* defined by somebody else...
*/
#ifndef FD_SET
/****************************************************************************/
/*
* select() uses bit masks of file descriptors in longs. These macros
* manipulate such bit fields.
@ -87,6 +95,10 @@ typedef struct fd_set
/****************************************************************************/
#endif /* FD_SET */
/****************************************************************************/
/*
* The following prototypes may clash with the bsdsocket.library or
* usergroup.library API definitions.