blob: c7c5fcec0ab85c6a8d5f52e1d388b770fb0a8fc0 [file] [log] [blame]
// RUN: test.sh -e -t %t %s
#include <stdio.h>
// Buffer overflow with tmpnam().
int main()
{
char buf[L_tmpnam];
tmpnam(&buf[1]);
return 0;
}