Hide declaration of gets(3) for C11 and later.

gets(3) was removed from C11.

This reverts commit 1291680c2a.

Bug: 14500800
Change-Id: I5e5146bdbb80f2be818a17f287b112bab37d1f6d
This commit is contained in:
Dan Albert 2014-06-17 23:31:21 +00:00
parent 1ef3ba2b4f
commit 9635046e53
2 changed files with 4 additions and 0 deletions

View File

@ -254,7 +254,9 @@ int dprintf(int, const char * __restrict, ...) __printflike(2, 3);
int vdprintf(int, const char * __restrict, __va_list) __printflike(2, 0);
#ifndef __AUDIT__
#if !defined(__STDC_VERSION__) || __STDC_VERSION__ < 201112L
char* gets(char*) __warnattr("gets is very unsafe; consider using fgets");
#endif
int sprintf(char* __restrict, const char* __restrict, ...)
__printflike(2, 3) __warnattr("sprintf is often misused; please use snprintf");
char* tmpnam(char*) __warnattr("tmpnam possibly used unsafely; consider using mkstemp");

View File

@ -63,7 +63,9 @@ using ::ftell;
using ::fwrite;
using ::getc;
using ::getchar;
#if !defined(__STDC_VERSION__) || __STDC_VERSION__ < 201112L
using ::gets;
#endif
using ::perror;
using ::printf;
using ::putc;