mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Fix C11 header changes for C++.
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
/* Define ISO C stdio on top of C++ iostreams.
|
||||
Copyright (C) 1991, 1994-2010, 2011 Free Software Foundation, Inc.
|
||||
Copyright (C) 1991, 1994-2011, 2012 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
@ -628,13 +628,16 @@ __BEGIN_NAMESPACE_STD
|
||||
extern char *fgets (char *__restrict __s, int __n, FILE *__restrict __stream)
|
||||
__wur;
|
||||
|
||||
#ifndef __USE_ISOC11
|
||||
#if !defined __USE_ISOC11 \
|
||||
|| (defined __cplusplus && __cplusplus <= 201103L)
|
||||
/* Get a newline-terminated string from stdin, removing the newline.
|
||||
DO NOT USE THIS FUNCTION!! There is no limit on how much it will read.
|
||||
|
||||
The function has been officially removed in ISO C11. This opportunity
|
||||
is used to also remove it from the GNU feature list. It is now only
|
||||
available when explicitly using an old ISO C, Unix, or POSIX standard.
|
||||
GCC defines _GNU_SOURCE when building C++ code and the function is still
|
||||
in C++11, so it is also available for C++.
|
||||
|
||||
This function is a possible cancellation point and therefore not
|
||||
marked with __THROW. */
|
||||
|
Reference in New Issue
Block a user