Return-Path: Delivered-To: apmail-ws-axis-cvs-archive@www.apache.org Received: (qmail 99963 invoked from network); 8 Feb 2006 11:41:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 8 Feb 2006 11:41:34 -0000 Received: (qmail 49668 invoked by uid 500); 8 Feb 2006 11:41:31 -0000 Delivered-To: apmail-ws-axis-cvs-archive@ws.apache.org Received: (qmail 49508 invoked by uid 500); 8 Feb 2006 11:41:30 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 49497 invoked by uid 500); 8 Feb 2006 11:41:29 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 49494 invoked by uid 99); 8 Feb 2006 11:41:29 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Feb 2006 03:41:29 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 08 Feb 2006 03:41:29 -0800 Received: (qmail 99765 invoked by uid 65534); 8 Feb 2006 11:41:06 -0000 Message-ID: <20060208114106.99759.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r375940 - in /webservices/axis2/trunk/c/modules/platforms/windows: axis2_getopt_windows.h getopt_windows.c Date: Wed, 08 Feb 2006 11:41:04 -0000 To: axis2-cvs@ws.apache.org From: nandika@apache.org X-Mailer: svnmailer-1.0.6 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: nandika Date: Wed Feb 8 03:40:57 2006 New Revision: 375940 URL: http://svn.apache.org/viewcvs?rev=375940&view=rev Log: (empty) Modified: webservices/axis2/trunk/c/modules/platforms/windows/axis2_getopt_windows.h webservices/axis2/trunk/c/modules/platforms/windows/getopt_windows.c Modified: webservices/axis2/trunk/c/modules/platforms/windows/axis2_getopt_windows.h URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/platforms/windows/axis2_getopt_windows.h?rev=375940&r1=375939&r2=375940&view=diff ============================================================================== --- webservices/axis2/trunk/c/modules/platforms/windows/axis2_getopt_windows.h (original) +++ webservices/axis2/trunk/c/modules/platforms/windows/axis2_getopt_windows.h Wed Feb 8 03:40:57 2006 @@ -16,9 +16,9 @@ * @{ */ -AXIS2_DECLARE_DATA int opterr; -AXIS2_DECLARE_DATA int optopt; -AXIS2_DECLARE_DATA char *optarg; +AXIS2_DECLARE_DATA extern int opterr; +AXIS2_DECLARE_DATA extern int optopt; +AXIS2_DECLARE_DATA extern char *optarg; /** * return and log error Modified: webservices/axis2/trunk/c/modules/platforms/windows/getopt_windows.c URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/platforms/windows/getopt_windows.c?rev=375940&r1=375939&r2=375940&view=diff ============================================================================== --- webservices/axis2/trunk/c/modules/platforms/windows/getopt_windows.c (original) +++ webservices/axis2/trunk/c/modules/platforms/windows/getopt_windows.c Wed Feb 8 03:40:57 2006 @@ -6,10 +6,9 @@ int opterr = 1; /*default - log error*/ int optind = 1; -/* int optopt; char *optarg; -*/ + #define AXIS2_OPT_ERR_NO_ARG 1 #define AXIS2_OPT_ERR_INVALID_OPTION 2 #define AXIS2_OPT_ERR_BAD_ARG 3