From b964e06640f62cf523e3808b68029d398692204a Mon Sep 17 00:00:00 2001 From: Zack Weinberg Date: Sun, 27 Nov 2016 12:36:16 -0500 Subject: 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. --- libio/libio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libio') diff --git a/libio/libio.h b/libio/libio.h index efd09f120b..f4ead83c4a 100644 --- a/libio/libio.h +++ b/libio/libio.h @@ -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; -- cgit v1.2.3