blob: 8dae33f4c4c1863737d9fd941bf3c1092007f3c6 [file] [log] [blame]
// RUN: test.sh -e -t %t %s
// Call strchr() on an unterminated string, and the character
// to find is not inside the string.
#include <string.h>
int main()
{
char a[1000];
memset(a, 'a', 1000);
strchr(a, 't');
return 0;
}