Fixed to work with newer versions of gcc, which require that main() return an int.

This commit is contained in:
dmose
2003-06-29 23:05:12 +00:00
parent 08e42e7299
commit 4cd6fd369f

View File

@@ -1,5 +1,6 @@
#include <stdlib.h>
void main() {
int main() {
system("java/bin/java -cp lib:lib/build:lib/pde.jar:lib/kjc.jar:lib/oro.jar:java/lib/ext/comm.jar PdeBase");
return 0;
}