diff options
| author | dkf <donal.k.fellows@manchester.ac.uk> | 2024-06-04 15:54:35 (GMT) |
|---|---|---|
| committer | dkf <donal.k.fellows@manchester.ac.uk> | 2024-06-04 15:54:35 (GMT) |
| commit | ca3ac898ea7724652c49e3cb7f57fcf974b22a16 (patch) | |
| tree | b5c98217485282023c93ab5b46c2cfde0af5ddc5 /unix | |
| parent | cd72d108bf14caa354d011a2ce41426ea011da2a (diff) | |
| download | tcl-ca3ac898ea7724652c49e3cb7f57fcf974b22a16.zip tcl-ca3ac898ea7724652c49e3cb7f57fcf974b22a16.tar.gz tcl-ca3ac898ea7724652c49e3cb7f57fcf974b22a16.tar.bz2 | |
Make function definitions have right argument style
Diffstat (limited to 'unix')
| -rw-r--r-- | unix/tclUnixFile.c | 5 |
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); /* *--------------------------------------------------------------------------- |
