public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libc/11125] <stdio.h> is incomplete for POSIX 2008
       [not found] <bug-11125-131@http.sourceware.org/bugzilla/>
@ 2014-06-30 20:30 ` fweimer at redhat dot com
  0 siblings, 0 replies; 3+ messages in thread
From: fweimer at redhat dot com @ 2014-06-30 20:30 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=11125

Florian Weimer <fweimer at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
              Flags|                            |security-

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Bug libc/11125] <stdio.h> is incomplete for POSIX 2008
  2010-01-01 23:08 [Bug libc/11125] New: " ebb9 at byu dot net
  2010-01-04 21:03 ` [Bug libc/11125] " jakub at redhat dot com
@ 2010-01-10  8:40 ` drepper at redhat dot com
  1 sibling, 0 replies; 3+ messages in thread
From: drepper at redhat dot com @ 2010-01-10  8:40 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From drepper at redhat dot com  2010-01-10 08:40 -------
Fixed in git.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED


http://sourceware.org/bugzilla/show_bug.cgi?id=11125

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Bug libc/11125] <stdio.h> is incomplete for POSIX 2008
  2010-01-01 23:08 [Bug libc/11125] New: " ebb9 at byu dot net
@ 2010-01-04 21:03 ` jakub at redhat dot com
  2010-01-10  8:40 ` drepper at redhat dot com
  1 sibling, 0 replies; 3+ messages in thread
From: jakub at redhat dot com @ 2010-01-04 21:03 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From jakub at redhat dot com  2010-01-04 21:02 -------
Can't reproduce the getline issue, it is prototyped (since 2009-02-26).
va_list is defined only with -D_XOPEN_SOURCE=700, not with
-D_POSIX_C_SOURCE=200809L, not sure what is right.  If it is supposed to be
defined also for _POSIX_C_SOURCE >= 200909L, then
#ifdef __USE_XOPEN
# ifdef __GNUC__
#  ifndef _VA_LIST_DEFINED
typedef _G_va_list va_list;
#   define _VA_LIST_DEFINED
#  endif
# else
#  include <stdarg.h>
# endif
#endif
would need to use #if defined __USE_XOPEN || defined __USE_XOPEN2K8
instead (or __USE_XOPEN2K?).

ssize_t would need something like:
#ifdef __USE_XOPEN2K8
# ifndef __ssize_t_defined
typedef __ssize_t ssize_t;
#  define __ssize_t_defined
# endif
#endif
in a right spot in libio/stdio.h.


-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=11125

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-06-30 20:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-11125-131@http.sourceware.org/bugzilla/>
2014-06-30 20:30 ` [Bug libc/11125] <stdio.h> is incomplete for POSIX 2008 fweimer at redhat dot com
2010-01-01 23:08 [Bug libc/11125] New: " ebb9 at byu dot net
2010-01-04 21:03 ` [Bug libc/11125] " jakub at redhat dot com
2010-01-10  8:40 ` drepper at redhat dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).