mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 14:20:07 +00:00
Minor problems exposed by compiling C++ tests under _ISOMAC.
* libio/libio.h: Use __USE_GNU, not _GNU_SOURCE, in a conditional. * test-skeleton.c: Include stdint.h to ensure uintptr_t is available.
This commit is contained in:
parent
2dacdc5eb0
commit
b964e06640
@ -1,3 +1,8 @@
|
||||
2016-11-27 Zack Weinberg <zackw@panix.com>
|
||||
|
||||
* libio/libio.h: Use __USE_GNU, not _GNU_SOURCE, in a conditional.
|
||||
* test-skeleton.c: Include stdint.h to ensure uintptr_t is available.
|
||||
|
||||
2016-11-27 Samuel Thibault <samuel.thibault@ens-lyon.org>
|
||||
|
||||
* hurd/hurd/signal.h (HURD_MSGPORT_RPC): Cast expressions results to
|
||||
|
@ -353,7 +353,7 @@ typedef int __io_seek_fn (void *__cookie, _IO_off64_t *__pos, int __w);
|
||||
typedef int __io_close_fn (void *__cookie);
|
||||
|
||||
|
||||
#ifdef _GNU_SOURCE
|
||||
#ifdef __USE_GNU
|
||||
/* User-visible names for the above. */
|
||||
typedef __io_read_fn cookie_read_function_t;
|
||||
typedef __io_write_fn cookie_write_function_t;
|
||||
|
@ -33,6 +33,7 @@
|
||||
#include <sys/wait.h>
|
||||
#include <sys/param.h>
|
||||
#include <time.h>
|
||||
#include <stdint.h>
|
||||
|
||||
/* The test function is normally called `do_test' and it is called
|
||||
with argc and argv as the arguments. We nevertheless provide the
|
||||
|
Loading…
Reference in New Issue
Block a user