diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-06-26 09:52:00 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-06-26 09:52:00 (GMT) |
commit | 1b53ef3bbd2bd4139a0fbbeaa493a2d4562b9825 (patch) | |
tree | 5d21575a7b80694248716632361e21ac84f2160c /generic/tclInt.h | |
parent | e37db312053b02b4ca582bd370d90e10b2632a77 (diff) | |
download | tcl-1b53ef3bbd2bd4139a0fbbeaa493a2d4562b9825.zip tcl-1b53ef3bbd2bd4139a0fbbeaa493a2d4562b9825.tar.gz tcl-1b53ef3bbd2bd4139a0fbbeaa493a2d4562b9825.tar.bz2 |
Remove compat/stdint.h and compat/stdlib.h: All C-compilers nowadays have it.
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index f4bf769..bb8819c 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -79,11 +79,8 @@ #include <stdio.h> #include <ctype.h> -#ifdef NO_STDLIB_H -# include "../compat/stdlib.h" -#else -# include <stdlib.h> -#endif +#include <stdlib.h> +#include <stdint.h> #ifdef NO_STRING_H #include "../compat/string.h" #else |