* include/sys/stdio.h: Remove _GNU_SOURCE guard around getline
and getdelim prototypes since they are SUSv4 now.
This commit is contained in:
parent
ced5f59df9
commit
814e854e2c
|
@ -1,3 +1,8 @@
|
|||
2010-06-07 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* include/sys/stdio.h: Remove _GNU_SOURCE guard around getline
|
||||
and getdelim prototypes since they are SUSv4 now.
|
||||
|
||||
2010-06-02 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* ntdll.h (STATUS_BAD_NETWORK_PATH): Define.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* sys/stdio.h
|
||||
|
||||
Copyright 2004, 2005 Red Hat, Inc.
|
||||
Copyright 2004, 2005, 2006, 2007, 2010 Red Hat, Inc.
|
||||
|
||||
This file is part of Cygwin.
|
||||
|
||||
|
@ -34,10 +34,8 @@ details. */
|
|||
|
||||
__BEGIN_DECLS
|
||||
|
||||
#ifdef _GNU_SOURCE
|
||||
ssize_t _EXFUN(getline, (char **, size_t *, FILE *));
|
||||
ssize_t _EXFUN(getdelim, (char **, size_t *, int, FILE *));
|
||||
#endif /* _GNU_SOURCE */
|
||||
|
||||
__END_DECLS
|
||||
|
||||
|
|
Loading…
Reference in New Issue