diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-05-03 14:42:39 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-05-03 14:42:39 +0300 |
commit | 5ee1e0f5341c2c1334bb089f5b25ee814b26e705 (patch) | |
tree | b60043434b5979827a56e43345d30d90433fe2f9 | |
parent | 7a1402260415ab064a1c0ee7bc9b666832c244b2 (diff) | |
download | micropython-5ee1e0f5341c2c1334bb089f5b25ee814b26e705.tar.gz micropython-5ee1e0f5341c2c1334bb089f5b25ee814b26e705.zip |
windows: alloca.h: Add comment, fix line endings.
-rw-r--r-- | windows/alloca.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/windows/alloca.h b/windows/alloca.h index f8fa6f17a0..1cf7722669 100644 --- a/windows/alloca.h +++ b/windows/alloca.h @@ -1 +1,3 @@ -#include <malloc.h>
+// Compatibility header to workaround lack of native alloca.h in some +// Windows toolchains. +#include <malloc.h> |