diff options
author | Jon TURNEY <[email protected]> | 2015-03-05 15:29:32 +0000 |
---|---|---|
committer | Jon TURNEY <[email protected]> | 2015-03-07 18:18:32 +0000 |
commit | 72d4f6c67f8a96956a1a8eeb90449231ba8e0940 (patch) | |
tree | 92539d27edb75bfcbce057f91a0b6d6368d9992b /include/c99_alloca.h | |
parent | 1ca39ec03cfba9c032f6e3b8b6c1f24e69bf96ac (diff) |
c99_alloca.h: Also use <alloca.h> for cygwin
Signed-off-by: Jon TURNEY <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'include/c99_alloca.h')
-rw-r--r-- | include/c99_alloca.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/c99_alloca.h b/include/c99_alloca.h index ed66fda0132..5a3b8c19abb 100644 --- a/include/c99_alloca.h +++ b/include/c99_alloca.h @@ -35,7 +35,7 @@ # define alloca _alloca -#elif defined(__sun) +#elif defined(__sun) || defined(__CYGWIN__) # include <alloca.h> |