use volatile pointers for intentional-crash code.

This commit is contained in:
Rich Felker
2011-06-06 18:10:43 -04:00
parent da88b16a22
commit 71a80c5767
2 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ char *__asctime(const struct tm *tm, char *buf)
* application developers that they may not be so lucky
* on other implementations (e.g. stack smashing..).
*/
*(int*)0 = 0;
*(volatile int*)0 = 0;
}
return buf;
}