diff options
author | redman <redman@noemail.net> | 1999-07-22 01:08:02 (GMT) |
---|---|---|
committer | redman <redman@noemail.net> | 1999-07-22 01:08:02 (GMT) |
commit | d2493ea3677d215d260840749e95a0f7f316ce69 (patch) | |
tree | 5dbfa8778122c25040f24668b6e635cf0ab23b40 /generic/tclInt.decls | |
parent | f855f19daf93e33664d965a351af50ec4cd18cd2 (diff) | |
download | tcl-d2493ea3677d215d260840749e95a0f7f316ce69.zip tcl-d2493ea3677d215d260840749e95a0f7f316ce69.tar.gz tcl-d2493ea3677d215d260840749e95a0f7f316ce69.tar.bz2 |
* doc/Utf.3:
* generic/tcl.decls:
* generic/tclInt.decls:
* generic/tclDecls.h:
* generic/tclIntDecls.h:
* generic/tclUtf.c:
* compat/strftime.c:
* unix/tclUnixTime.c: Changed function declarations in
non-platform-specific APIs to use "unsigned long" instead of
"size_t", which may not be defined on certain compilers (rather
than include sys/types.h, which may not exist).
FossilOrigin-Name: 22b143003b180eaed3b7f8c9bad28df440ef6071
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r-- | generic/tclInt.decls | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index 48cb4dd..26b02d4 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.decls @@ -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: tclInt.decls,v 1.12 1999/06/30 22:34:44 redman Exp $ +# RCS: @(#) $Id: tclInt.decls,v 1.13 1999/07/22 01:08:05 redman Exp $ library tcl @@ -502,7 +502,7 @@ declare 133 generic { struct tm * TclpGetDate(TclpTime_t time, int useGMT) } declare 134 generic { - size_t TclpStrftime(char *s, size_t maxsize, CONST char *format, \ + unsigned long TclpStrftime(char *s, size_t maxsize, CONST char *format, \ CONST struct tm *t) } declare 135 generic { |