From Peter Johansson:

The supplied patch takes care of the following compilation warnings:

getopt.c(409) : warning C4013: 'strcmp' undefined; assuming extern 
returning int
getopt.c(478) : warning C4013: 'strncmp' undefined; assuming extern 
returning int
getopt.c(480) : warning C4013: 'strlen' undefined; assuming extern 
returning int

svn path=/trunk/; revision=15083
This commit is contained in:
Anders Broman 2005-07-26 09:31:04 +00:00
parent fbb92df9f4
commit 5e241d8a7c
1 changed files with 3 additions and 1 deletions

View File

@ -28,6 +28,8 @@
#include "config.h"
#endif
#include <string.h>
#ifndef __STDC__
/* This is a separate conditional since some stdc systems
reject `defined (const)'. */
@ -477,7 +479,7 @@ _getopt_internal (argc, argv, optstring, longopts, longind, long_only)
p++, option_index++)
if (!strncmp (p->name, nextchar, s - nextchar))
{
if (s - nextchar == strlen (p->name))
if ((size_t)(s - nextchar) == strlen (p->name))
{
/* Exact match found. */
pfound = p;