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