blob: 0dcecdf98591f5dc8269d6db456dccb3f70736ee [file] [log] [blame]
// RUN: test.sh -p -t %t %s
#include <unistd.h>
// Ensure that a correct use of readlink() is not flagged as an error.
int main()
{
char * buffer = malloc (24);
readlink ("/etc/passwd", buffer, 24);
return 0;
}