Disable warning: the `gets' function is dangerous in GCC through header files?
The obvious answer is to learn from what the compiler is trying to tell you - you should never, ever, use gets(), as it is totally unsafe. Use fgets() instead, which allows you to prevent possible buffer overruns.
#define BUFFER_SIZE 100
char buff[BUFFER_SIZE];
gets( buff); // unsafe!
fgets( buff, sizeof(buff), stdin ); // safe
If you really want use it.
Here is answer From: http://www.gamedev.net/community/forums/topic.asp?topic_id=523641
If you use a reasonably recent version of gcc, you can use:
#pragma GCC diagnostic ignored "your option here"
For example, if those headers produce a "floating point comparison is unsafe" error, you would use:
#pragma GCC diagnostic ignored "-Wfloat-equal".
Unluckily, you cannot disable "-Wall" that way (that would be too easy, wouldn't it...), you have to do the individual warning options which -Wall enables by hand (at least, the conflicting ones).
Docs: http://gcc.gnu.org/onlinedocs/gcc/Diagnostic-Pragmas.html#Diagnostic-Pragmas
EDIT: But it seems not work for gets warning... I tried on my pc.
I would heed the warning and replace gets
. This is clear enough for me:
BUGS
Never use gets(). Because it is impossible to tell without knowing the data in advance how many characters gets() will read, and because gets() will continue to store characters past the end of the buffer, it is extremely dangerous to use. It has been used to break computer security. Use fgets() instead.