********>Bugfix 10:
Author: Dave Case, reported by Kazuo Ohta
Date: 08/14/06
Programs: top2mol2
Description: The main() routine of this program does not include an explicit
"return 0;" statement at the end. This is perfectly legal C
code, but it seems that in some circumstances (MacOS/gcc4 has
been reported) it generates an error.
Fix: apply the following patch to amber9/src/antechamber/top2mol2.c
------------------------------------------------------------------------------
*** top2mol2.c 3 Apr 2006 23:34:26 -0000 9.0
--- top2mol2.c 14 Aug 2006 17:20:20 -0000
***************
*** 818,822 ****
--- 818,823 ----
}
write();
fclose(fpout);
+ return 0;
}
------------------------------------------------------------------------------
Temporary workarounds: none