diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2005-11-02 14:51:04 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2005-11-02 14:51:04 (GMT) |
commit | 4f31953cdce3f382551e258f2ff7c157d7c4908f (patch) | |
tree | 26e138a11c8ea34a812efae189c0b32260bed314 /generic/tclGetDate.y | |
parent | 41aa65744a309bd290f9d3a764be958446340687 (diff) | |
download | tcl-4f31953cdce3f382551e258f2ff7c157d7c4908f.zip tcl-4f31953cdce3f382551e258f2ff7c157d7c4908f.tar.gz tcl-4f31953cdce3f382551e258f2ff7c157d7c4908f.tar.bz2 |
ANSIfy; generic/*.c now all done except for test code
Diffstat (limited to 'generic/tclGetDate.y')
-rw-r--r-- | generic/tclGetDate.y | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/generic/tclGetDate.y b/generic/tclGetDate.y index 800c04b..6f67e50 100644 --- a/generic/tclGetDate.y +++ b/generic/tclGetDate.y @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclGetDate.y,v 1.27 2005/05/10 18:34:38 kennykb Exp $ + * RCS: @(#) $Id: tclGetDate.y,v 1.28 2005/11/02 14:51:04 dkf Exp $ */ %{ @@ -151,11 +151,11 @@ typedef enum _MERIDIAN { /* * Prototypes of internal functions. */ -static void TclDateerror _ANSI_ARGS_((char *s)); -static time_t ToSeconds _ANSI_ARGS_((time_t Hours, time_t Minutes, - time_t Seconds, MERIDIAN Meridian)); -static int LookupWord _ANSI_ARGS_((char *buff)); -static int TclDatelex _ANSI_ARGS_((void* info)); +static void TclDateerror(char *s); +static time_t ToSeconds(time_t Hours, time_t Minutes, + time_t Seconds, MERIDIAN Meridian); +static int LookupWord(char *buff); +static int TclDatelex(void* info); %} |