view dmd/rmem.h @ 1611:3f728445fc42

Merge DMD r277: bugzilla 3495 Segfault(typinf.c) instantiating D variadic... bugzilla 3495 Segfault(typinf.c) instantiating D variadic function with too few arguments. --- dmd/expression.c | 11 ++++++----- 1 files changed, 6 insertions(+), 5 deletions(-)
author Leandro Lucarella <llucax@gmail.com>
date Wed, 06 Jan 2010 15:18:21 -0300
parents b30fe7e1dbb9
children
line wrap: on
line source

#ifndef __RMEM_H__
#define __RMEM_H__

// jam memory stuff here

#include "mem.h"

#if (defined (__SVR4) && defined (__sun))
#include <alloca.h>
#endif

#ifdef __MINGW32__
#include <malloc.h>
#endif

#endif // __RMEM_H__