mirror of git://sourceware.org/git/glibc.git
More fallout from gets removal
This commit is contained in:
parent
16578fa7b3
commit
8ea79a616e
|
@ -33,6 +33,12 @@
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#include <sys/un.h>
|
#include <sys/un.h>
|
||||||
|
|
||||||
|
__BEGIN_DECLS
|
||||||
|
/* The <stdio.h> header does not include the declaration for gets
|
||||||
|
anymore when compiling with _GNU_SOURCE. Provide a copy here. */
|
||||||
|
extern char *gets (char *__s);
|
||||||
|
__END_DECLS
|
||||||
|
|
||||||
#define obstack_chunk_alloc malloc
|
#define obstack_chunk_alloc malloc
|
||||||
#define obstack_chunk_free free
|
#define obstack_chunk_free free
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue