Blob Blame History Raw
--- dockapp-0.6.1/src/dashaped.c.stdinc_decl	2007-01-09 17:38:37.000000000 +0100
+++ dockapp-0.6.1/src/dashaped.c	2007-01-09 17:39:04.000000000 +0100
@@ -22,6 +22,7 @@
  */
 
 #include <assert.h>
+#include <string.h>
 
 #include "dockapp.h"
 #include "daargs.h"
--- dockapp-0.6.1/src/daargs.c.stdinc_decl	2005-07-16 13:49:10.000000000 +0200
+++ dockapp-0.6.1/src/daargs.c	2007-01-09 17:41:00.000000000 +0100
@@ -22,6 +22,8 @@
  */
 
 #include <assert.h>
+#include <strings.h>
+#include <string.h>
 
 #include "daargs.h"
 #include "dautil.h"
@@ -38,6 +40,9 @@
 static void _daContextAddOptions(DAProgramOption *options, int count);
 static void printHelp(char *description);
 
+int contains(char *needle, char *haystack);
+int parseOption(DAProgramOption *option, int i, int argc, char** argv);
+int readIntOption(int index, char **argv);
 
 /*
  * Public functions
--- dockapp-0.6.1/src/dautil.c.stdinc_decl	2005-04-20 20:05:04.000000000 +0200
+++ dockapp-0.6.1/src/dautil.c	2007-01-09 17:37:02.000000000 +0100
@@ -21,6 +21,8 @@
  * $Id: dautil.c,v 1.8 2005/04/20 18:05:04 dalroi Exp $
  */
 
+#include <string.h>
+
 #include "daargs.h"
 #include "dautil.h"