Version: 0.3.6

* Added m68k port (Roman Hodek <[email protected]>) (Bug#27075)
* Changed "int pid" with "pid_t pid" everywhere
* Fixed return type of some functions from "int" to "void *" (thanks, Roman)
diff --git a/execute_program.c b/execute_program.c
index 663d8e9..6f68bb3 100644
--- a/execute_program.c
+++ b/execute_program.c
@@ -1,3 +1,7 @@
+#if HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include <stdio.h>
 #include <sys/types.h>
 #include <sys/stat.h>
@@ -16,7 +20,7 @@
 
 void execute_program(struct process * sp, char **argv)
 {
-	int pid;
+	pid_t pid;
 
 	if (opt_d) {
 		output_line(0, "Executing `%s'...", sp->filename);