summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixFile.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2024-06-04 15:54:35 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2024-06-04 15:54:35 (GMT)
commitca3ac898ea7724652c49e3cb7f57fcf974b22a16 (patch)
treeb5c98217485282023c93ab5b46c2cfde0af5ddc5 /unix/tclUnixFile.c
parentcd72d108bf14caa354d011a2ce41426ea011da2a (diff)
downloadtcl-ca3ac898ea7724652c49e3cb7f57fcf974b22a16.zip
tcl-ca3ac898ea7724652c49e3cb7f57fcf974b22a16.tar.gz
tcl-ca3ac898ea7724652c49e3cb7f57fcf974b22a16.tar.bz2
Make function definitions have right argument style
Diffstat (limited to 'unix/tclUnixFile.c')
-rw-r--r--unix/tclUnixFile.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/unix/tclUnixFile.c b/unix/tclUnixFile.c
index 93f6aa8..e91ed41 100644
--- a/unix/tclUnixFile.c
+++ b/unix/tclUnixFile.c
@@ -13,8 +13,9 @@
#include "tclInt.h"
#include "tclFileSystem.h"
-static int NativeMatchType(Tcl_Interp *interp, const char* nativeEntry,
- const char* nativeName, Tcl_GlobTypeData *types);
+static int NativeMatchType(Tcl_Interp *interp,
+ const char* nativeEntry, const char* nativeName,
+ Tcl_GlobTypeData *types);
/*
*---------------------------------------------------------------------------