diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-10-12 11:25:28 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-10-12 11:25:28 (GMT) |
commit | 01b1e3aadf2bece4ca5fe2711ee9d6b06bf351ed (patch) | |
tree | 4498322747b36e00d90fe6817f183b3dad66ec8c /unix/tclUnixSock.c | |
parent | 6552a88de10ad8275d8b26c7fde04754348c8677 (diff) | |
download | tcl-01b1e3aadf2bece4ca5fe2711ee9d6b06bf351ed.zip tcl-01b1e3aadf2bece4ca5fe2711ee9d6b06bf351ed.tar.gz tcl-01b1e3aadf2bece4ca5fe2711ee9d6b06bf351ed.tar.bz2 |
TIP #344 bugfix: on some platforms, <netinet/tcp.h> needs <stdint.h> to be included first
Diffstat (limited to 'unix/tclUnixSock.c')
-rw-r--r-- | unix/tclUnixSock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixSock.c b/unix/tclUnixSock.c index e904cfd..abd7fa6 100644 --- a/unix/tclUnixSock.c +++ b/unix/tclUnixSock.c @@ -9,8 +9,8 @@ * this file, and for a DISCLAIMER OF ALL WARRANTIES. */ -#include <netinet/tcp.h> #include "tclInt.h" +#include <netinet/tcp.h> /* * Helper macros to make parts of this file clearer. The macros do exactly |