summaryrefslogtreecommitdiffstats
path: root/programs/platform.h
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2020-11-14 19:13:08 (GMT)
committerYann Collet <cyan@fb.com>2020-11-14 19:13:08 (GMT)
commit7315c6e7a00494b2b8618379209732260686524f (patch)
tree43d3827d704ff72f5078d132461cfea73b87070b /programs/platform.h
parent849ebae524c85c102aad9b085c6725bd20de6a32 (diff)
downloadlz4-7315c6e7a00494b2b8618379209732260686524f.zip
lz4-7315c6e7a00494b2b8618379209732260686524f.tar.gz
lz4-7315c6e7a00494b2b8618379209732260686524f.tar.bz2
LZ4IO_openDstFile() doesn't need pref mutability
Diffstat (limited to 'programs/platform.h')
-rw-r--r--programs/platform.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/programs/platform.h b/programs/platform.h
index bdbcb3b..ab8300d 100644
--- a/programs/platform.h
+++ b/programs/platform.h
@@ -77,7 +77,7 @@ extern "C" {
* PLATFORM_POSIX_VERSION = -1 for non-Unix e.g. Windows
* PLATFORM_POSIX_VERSION = 0 for Unix-like non-POSIX
* PLATFORM_POSIX_VERSION >= 1 is equal to found _POSIX_VERSION
-***************************************************************/
+************************************************************** */
#if !defined(_WIN32) && (defined(__unix__) || defined(__unix) || (defined(__APPLE__) && defined(__MACH__)) /* UNIX-like OS */ \
|| defined(__midipix__) || defined(__VMS))
# if (defined(__APPLE__) && defined(__MACH__)) || defined(__SVR4) || defined(_AIX) || defined(__hpux) /* POSIX.1–2001 (SUSv3) conformant */ \
@@ -105,7 +105,7 @@ extern "C" {
/*-*********************************************
* Detect if isatty() and fileno() are available
-************************************************/
+*********************************************** */
#if (defined(__linux__) && (PLATFORM_POSIX_VERSION >= 1)) || (PLATFORM_POSIX_VERSION >= 200112L) || defined(__DJGPP__)
# include <unistd.h> /* isatty */
# define IS_CONSOLE(stdStream) isatty(fileno(stdStream))
@@ -128,7 +128,7 @@ static __inline int IS_CONSOLE(FILE* stdStream)
/******************************
* OS-specific Includes
-******************************/
+***************************** */
#if defined(MSDOS) || defined(OS2) || defined(WIN32) || defined(_WIN32)
# include <fcntl.h> /* _O_BINARY */
# include <io.h> /* _setmode, _fileno, _get_osfhandle */