Skip to content

Commit

Permalink
Flush
Browse files Browse the repository at this point in the history
svn path=/trunk/mono/; revision=208
  • Loading branch information
migueldeicaza committed Jul 17, 2001
1 parent 85c1bd5 commit bb3b9ee
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion mono/interpreter/interp.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,14 @@
#include <stdio.h>
#include <string.h>
#include <glib.h>
#include <alloca.h>

#ifdef HAVE_ALLOCA_H
# include <alloca.h>
#else
# ifdef __CYGWIN__
# define alloca __builtin_alloca
# endif
#endif

#include "interp.h"
/* trim excessive headers */
Expand Down

0 comments on commit bb3b9ee

Please sign in to comment.