Compare commits

..

1 Commits

Author SHA1 Message Date
Jan Romann
da9adfa0a4
Merge 655c6b1e37 into 1cc1536e6a 2024-05-07 13:28:53 +02:00
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h> #include <stdio.h>
#if defined(LWIP_UNIX_OPENBSD) || defined(LWIP_UNIX_MACH) #if defined(LWIP_UNIX_OPENBSD)
#include <util.h> #include <util.h>
#endif #endif
#include <termios.h> #include <termios.h>

View File

@ -77,7 +77,7 @@ static int deflate_level; /* default compression level, can be changed via comma
#define CHDIR(path) SetCurrentDirectoryA(path) #define CHDIR(path) SetCurrentDirectoryA(path)
#define CHDIR_SUCCEEDED(ret) (ret == TRUE) #define CHDIR_SUCCEEDED(ret) (ret == TRUE)
#elif __linux__ || __APPLE__ #elif __linux__
#define GETCWD(path, len) getcwd(path, len) #define GETCWD(path, len) getcwd(path, len)
#define GETCWD_SUCCEEDED(ret) (ret != NULL) #define GETCWD_SUCCEEDED(ret) (ret != NULL)