svn commit: r331948 - head/include

Cy Schubert cy at FreeBSD.org
Tue Apr 3 20:59:47 UTC 2018


Author: cy
Date: Tue Apr  3 20:59:46 2018
New Revision: 331948
URL: https://svnweb.freebsd.org/changeset/base/331948

Log:
  Remove redundant check.
  
  Reported by:	kib@
  MFC after:	2 weeks
  X-MFC with:	r331936
  Differential Revision:	https://reviews.freebsd.org/D12785

Modified:
  head/include/stdio.h

Modified: head/include/stdio.h
==============================================================================
--- head/include/stdio.h	Tue Apr  3 20:53:53 2018	(r331947)
+++ head/include/stdio.h	Tue Apr  3 20:59:46 2018	(r331948)
@@ -270,7 +270,7 @@ size_t	 fwrite(const void * __restrict, size_t, size_t
 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 *);


More information about the svn-src-head mailing list