blob: d36fbabc69e3ae85dd23865a83c252b8ce73dc96 [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.
char buffer[24];
int main()
{
readlink ("/etc/passwd", buffer, 24);
return 0;
}