Remove redundant check.

Reported by:	kib@
MFC after:	2 weeks
X-MFC with:	r331936
Differential Revision:	https://reviews.freebsd.org/D12785
This commit is contained in:
Cy Schubert 2018-04-03 20:59:46 +00:00
parent e8a4bb5866
commit dc711d6db3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=331948

View file

@ -270,7 +270,7 @@ size_t fwrite(const void * __restrict, size_t, size_t, FILE * __restrict);
int getc(FILE *);
int getchar(void);
char *gets(char *);
#if defined(__EXT1_VISIBLE) && __EXT1_VISIBLE == 1
#if __EXT1_VISIBLE
char *gets_s(char *, rsize_t);
#endif
void perror(const char *);