diff options
author | dgp <dgp@users.sourceforge.net> | 2008-09-03 05:43:22 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2008-09-03 05:43:22 (GMT) |
commit | e72b23c2ef58f8fc0fe5d9f1b6fd9dc04caedefa (patch) | |
tree | 216ee52f93716ef849868accef30b2e4ad79e04d /unix | |
parent | a8602e1abc63945cb101c7a028629b37326832ef (diff) | |
download | tcl-e72b23c2ef58f8fc0fe5d9f1b6fd9dc04caedefa.zip tcl-e72b23c2ef58f8fc0fe5d9f1b6fd9dc04caedefa.tar.gz tcl-e72b23c2ef58f8fc0fe5d9f1b6fd9dc04caedefa.tar.bz2 |
* generic/tcl.h: Stripped "callers" of the _ANSI_ARGS_ macro
* compat/dirent2.h: to support a TCL_NO_DEPRECATED build.
* compat/dlfcn.h:
* unix/tclUnixPort.h:
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tclUnixPort.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/unix/tclUnixPort.h b/unix/tclUnixPort.h index 8fc6574..4b7d20b 100644 --- a/unix/tclUnixPort.h +++ b/unix/tclUnixPort.h @@ -19,7 +19,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUnixPort.h,v 1.67 2008/08/13 23:08:38 das Exp $ + * RCS: @(#) $Id: tclUnixPort.h,v 1.68 2008/09/03 05:43:32 dgp Exp $ */ #ifndef _TCLUNIXPORT @@ -251,8 +251,7 @@ MODULE_SCOPE int TclUnixSetBlockingMode(int fd, int mode); #endif #ifdef GETTOD_NOT_DECLARED -EXTERN int gettimeofday _ANSI_ARGS_((struct timeval *tp, - struct timezone *tzp)); +EXTERN int gettimeofday(struct timeval *tp, struct timezone *tzp); #endif /* |