Fix various warnings reported by gcc

Shadowed variables, const warnings
This commit is contained in:
Lambert Clara
2012-08-12 13:24:21 +02:00
parent c8c36f6ec0
commit c2729181a2
9 changed files with 29 additions and 29 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ extern int optind;
extern int opterr;
extern int optopt;
int getopt(int argc, char** argv, char* optstr);
int getopt(int argc, char** argv, const char* optstr);
#ifdef __cplusplus