diff options
author | Sander Vesik <svesik@openoffice.org> | 2004-04-21 12:26:01 +0000 |
---|---|---|
committer | Sander Vesik <svesik@openoffice.org> | 2004-04-21 12:26:01 +0000 |
commit | 27dd8f56d3e918183b7d5a6a5c0d991b09f2fe46 (patch) | |
tree | 2cd076759dd27a6c58cf2b3e75fbcd15a289d734 /soltools/javadep | |
parent | 52bf9f7c73ee328b3f9405a3ef4c7cd51d6c1959 (diff) |
INTEGRATION: CWS ooo20040329 (1.4.92); FILE MERGED
2004/03/17 12:47:15 waratah 1.4.92.1: #i1858# add explicit int return type to function
Diffstat (limited to 'soltools/javadep')
-rw-r--r-- | soltools/javadep/javadep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/soltools/javadep/javadep.c b/soltools/javadep/javadep.c index 7ee2fc290f5a..bc02eb29e7a0 100644 --- a/soltools/javadep/javadep.c +++ b/soltools/javadep/javadep.c @@ -2,9 +2,9 @@ * * $RCSfile: javadep.c,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: nf $ $Date: 2001-04-23 11:38:42 $ + * last change: $Author: svesik $ $Date: 2004-04-21 13:26:01 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -790,7 +790,7 @@ usage() * it's to sad that getopt() is not available everywhere * note: this is not a full POSIX conforming getopt() */ -simple_getopt(int nargc, char *pargv[], const char *poptstring) +int simple_getopt(int nargc, char *pargv[], const char *poptstring) { char *parg = pargv[optind]; |