diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2007-09-19 10:54:19 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2007-09-19 10:54:19 (GMT) |
commit | fe764adad787ef9a5363f10f7eda7fc634e2fc47 (patch) | |
tree | acac58e6ad8b71e32db3676982410796be555cb0 /generic | |
parent | ba0783fdaa33959a87c4ca3d29b588745c87794a (diff) | |
download | tk-fe764adad787ef9a5363f10f7eda7fc634e2fc47.zip tk-fe764adad787ef9a5363f10f7eda7fc634e2fc47.tar.gz tk-fe764adad787ef9a5363f10f7eda7fc634e2fc47.tar.bz2 |
Replace isdigit call with an internal implementation to avoid libc linkage on windows
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tkStubLib.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/generic/tkStubLib.c b/generic/tkStubLib.c index aaeba9f..cfcaffd 100644 --- a/generic/tkStubLib.c +++ b/generic/tkStubLib.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkStubLib.c,v 1.17 2007/09/18 16:12:19 dgp Exp $ + * RCS: @(#) $Id: tkStubLib.c,v 1.18 2007/09/19 10:54:20 patthoyts Exp $ */ /* @@ -55,6 +55,15 @@ TkIntPlatStubs *tkIntPlatStubsPtr; TkIntXlibStubs *tkIntXlibStubsPtr; /* + * Use our own isdigit to avoid linking to libc on windows + */ + +static int isDigit(const int c) +{ + return (c >= '0' && c <= '9'); +} + +/* *---------------------------------------------------------------------- * * Tk_InitStubs -- @@ -95,7 +104,7 @@ Tk_InitStubs( int count = 0; while (*p) { - count += !isdigit(*p++); + count += !isDigit(*p++); } if (count == 1) { CONST char *q = actualVersion; |