summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornijtmans <nijtmans>2008-05-04 07:28:46 (GMT)
committernijtmans <nijtmans>2008-05-04 07:28:46 (GMT)
commit47a766393e63ffe597df226edf2012eae4231ab2 (patch)
tree946fb8f8a2a4a7aec80db045f4101f11fce2f9e1
parent631d521b31502f1734b9d599aa2d5fa7c92af8d9 (diff)
downloadtcl-47a766393e63ffe597df226edf2012eae4231ab2.zip
tcl-47a766393e63ffe597df226edf2012eae4231ab2.tar.gz
tcl-47a766393e63ffe597df226edf2012eae4231ab2.tar.bz2
CONST -> const
-rw-r--r--compat/unistd.h4
-rw-r--r--generic/tclDate.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/compat/unistd.h b/compat/unistd.h
index 443e319..838e7ab 100644
--- a/compat/unistd.h
+++ b/compat/unistd.h
@@ -1,7 +1,7 @@
/*
* unistd.h --
*
- * Macros, CONSTants and prototypes for Posix conformance.
+ * Macros, constants and prototypes for Posix conformance.
*
* Copyright 1989 Regents of the University of California Permission to use,
* copy, modify, and distribute this software and its documentation for any
@@ -10,7 +10,7 @@
* no representations about the suitability of this software for any purpose.
* It is provided "as is" without express or implied warranty.
*
- * RCS: @(#) $Id: unistd.h,v 1.3 2008/05/02 10:27:04 dkf Exp $
+ * RCS: @(#) $Id: unistd.h,v 1.4 2008/05/04 07:28:47 nijtmans Exp $
*/
#ifndef _UNISTD
diff --git a/generic/tclDate.c b/generic/tclDate.c
index 0bd48c8..2b0636b 100644
--- a/generic/tclDate.c
+++ b/generic/tclDate.c
@@ -2679,7 +2679,7 @@ TclClockOldscanObjCmd(
ClientData clientData, /* Unused */
Tcl_Interp *interp, /* Tcl interpreter */
int objc, /* Count of paraneters */
- Tcl_Obj *CONST *objv) /* Parameters */
+ Tcl_Obj *const *objv) /* Parameters */
{
Tcl_Obj *result, *resultElement;
int yr, mo, da;