diff subopt-helper.h @ 30122:1772a5171ac7

Fix function declarations to avoid casting function pointers.
author reimar
date Fri, 01 Jan 2010 13:18:49 +0000
parents 0f1b5b68af32
children c1a3f1bbba26
line wrap: on
line diff
--- a/subopt-helper.h	Fri Jan 01 12:54:09 2010 +0000
+++ b/subopt-helper.h	Fri Jan 01 13:18:49 2010 +0000
@@ -38,8 +38,8 @@
 } strarg_t;
 
 
-int int_non_neg( int * i );
-int int_pos( int * i );
+int int_non_neg(void *iptr);
+int int_pos(void *iptr);
 
 int strargcmp(strarg_t *arg, const char *str);
 int strargcasecmp(strarg_t *arg, char *str);