Make portable c for Parallel test

This commit is contained in:
Zach Mullen 2009-09-23 14:07:57 -04:00
parent 39383ef8cb
commit 8ffc8147e0
1 changed files with 4 additions and 4 deletions

View File

@ -1,9 +1,9 @@
#include <stdio.h>
//if run serially, works fine
//if run in parallel, someone will attempt to delete
//a locked file, which will fail
int main()
/*if run serially, works fine.
If run in parallel, someone will attempt to delete
a locked file, which will fail */
int main(void)
{
FILE* file;
int i;