blob: 9b681cfc4b75dd4f3ce2811c428d50039888f4be [file] [log] [blame]
njn13f02932003-04-30 20:23:58 +00001#include <unistd.h>
2
3// Before the bug was fixed, if a program changed working directory, things
4// would break and the cachegrind.out.<pid> file wouldn't get written.
5int main(void)
6{
7 chdir("..");
8
9 return 0;
10}