I’m getting this warning: (-std=c99 -pedantic)
warning: implicit declaration of function ‘strndup’ [-Wimplicit-function-declaration]
but I’m importing these libs:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
So what?! 🙁
// file.c:
#include "file.h"
strndup(...)
// file.h:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
The issue is your usage of the
-std=c99option. Sincestrndup()isn’t part of C99, and you’re asking the compiler to go into standards compliant mode, it won’t provide the prototype for it. It still links of course, because your C library has it.While you may be able to coax
gccinto providing it by specifying feature macros yourself, I’d say it doesn’t make much sense to be in C99 compliance mode and ask for GNU extensions for example.gccalready provides a mode for this, which will solve your warning:-std=gnu99.