summaryrefslogtreecommitdiff
path: root/include/sal
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2020-08-07 08:34:42 +0100
committerTor Lillqvist <tml@collabora.com>2020-08-07 13:32:49 +0200
commit04d116fe90b07078c4fc79c30d7720d01622cc82 (patch)
treebc5a286953789a0be893dc9e5c1a353a80c5a60f /include/sal
parent24d94f9a1507d24b71276f879d8353996ebe55dc (diff)
Use <alloca.h> for macOS and iOS, too
Change-Id: I20f349cc03fe28536470c19f2559cc5414b823fb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100284 Tested-by: Jenkins Reviewed-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'include/sal')
-rw-r--r--include/sal/alloca.h16
1 files changed, 1 insertions, 15 deletions
diff --git a/include/sal/alloca.h b/include/sal/alloca.h
index 70a3f9c9d563..801a7b35e034 100644
--- a/include/sal/alloca.h
+++ b/include/sal/alloca.h
@@ -20,7 +20,7 @@
#ifndef INCLUDED_SAL_ALLOCA_H
#define INCLUDED_SAL_ALLOCA_H
-#if defined (__sun) || defined (LINUX) || defined(AIX) || defined(ANDROID) || defined(HAIKU)
+#if defined (__sun) || defined (LINUX) || defined(AIX) || defined(ANDROID) || defined(HAIKU) || defined(MACOSX) || defined(IOS)
#ifndef INCLUDED_ALLOCA_H
#include <alloca.h>
@@ -34,20 +34,6 @@
#define INCLUDED_STDLIB_H
#endif
-#elif defined (MACOSX)
-
-#ifndef INCLUDED_SYS_TYPES_H
-#include <sys/types.h>
-#define INCLUDED_SYS_TYPES_H
-#endif
-
-#elif defined (IOS)
-
-#ifndef INCLUDED_SYS_TYPES_H
-#include <sys/types.h>
-#define INCLUDED_SYS_TYPES_H
-#endif
-
#elif defined (_WIN32)
#ifndef INCLUDED_MALLOC_H