diff options
author | CRD716 <crd716@gmail.com> | 2023-04-13 10:39:25 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-13 18:39:25 +0300 |
commit | 0e07e6a8399fd993739a3ba3c6f95f92bfab6f58 (patch) | |
tree | 77748d0d1d626acd4d9098c247f67fe1a6b3e1a8 | |
parent | a3a2a0eda8828b60436e9f69d9ac2c1060d03e7a (diff) |
common : remove unnecessary includes (#947)
-rw-r--r-- | examples/common.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/examples/common.cpp b/examples/common.cpp index 91d96ef..0772dbf 100644 --- a/examples/common.cpp +++ b/examples/common.cpp @@ -7,12 +7,6 @@ #include <iterator> #include <algorithm> -#if defined(_MSC_VER) || defined(__MINGW32__) -#include <malloc.h> // using malloc.h with MSC/MINGW -#elif !defined(__FreeBSD__) && !defined(__NetBSD__) && !defined(__OpenBSD__) -#include <alloca.h> -#endif - #if defined (_WIN32) #include <fcntl.h> #include <io.h> |