drop unused _MSC_VER check

Probably a copy+paste bug: this driver doesn't work at all under Windows.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2024-05-15 16:46:17 +02:00
committed by Enrico Weigelt
parent 4af8592df4
commit 37134bb03f

View File

@@ -47,9 +47,6 @@
#define alloca __builtin_alloca
#elif defined _AIX
#define alloca __alloca
#elif defined _MSC_VER
#include <malloc.h>
#define alloca _alloca
#else
void *alloca(size_t);
#endif