/*
* cws2fws by Alex Beregszaszi
- * Public domain.
+ * This file is placed in the public domain.
+ * Use the program however you see fit.
*
* This utility converts compressed Macromedia Flash files to uncompressed ones.
- *
*/
#include <sys/stat.h>
#define dbgprintf
#endif
-main(int argc, char *argv[])
+int main(int argc, char *argv[])
{
int fd_in, fd_out, comp_len, uncomp_len, i, last_out;
char buf_in[1024], buf_out[65536];
inflateEnd(&zstream);
close(fd_in);
close(fd_out);
+ return 0;
}