diff options
Diffstat (limited to 'compat/string.h')
-rw-r--r-- | compat/string.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compat/string.h b/compat/string.h index e452183..0be1ec1 100644 --- a/compat/string.h +++ b/compat/string.h @@ -9,13 +9,13 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: string.h,v 1.8 2008/05/02 10:27:04 dkf Exp $ + * RCS: @(#) $Id: string.h,v 1.9 2010/04/29 09:23:57 nijtmans Exp $ */ #ifndef _STRING #define _STRING -#include <tcl.h> +#include "tcl.h" /* * The following #include is needed to define size_t. (This used to include @@ -50,7 +50,7 @@ extern char * strerror(int error); extern size_t strlen(const char *string); extern int strncasecmp(const char *s1, const char *s2, size_t n); extern char * strncat(char *dst, const char *src, size_t numChars); -extern int strncmp(const char *s1, const char *s2,size_t nChars); +extern int strncmp(const char *s1, const char *s2, size_t nChars); extern char * strncpy(char *dst, const char *src, size_t numChars); extern char * strpbrk(const char *string, const char *chars); extern char * strrchr(const char *string, int c); |