File:  [DVB] / dietlibc / include / alloca.h
Revision 1.3: download - view: text, annotated - select for diffs
Tue Aug 19 16:58:17 2003 UTC (20 years, 9 months ago) by leitner
Branches: MAIN
CVS tags: HEAD
make headers C++ compatible

#ifndef _ALLOCA_H
#define _ALLOCA_H

#include <sys/cdefs.h>
#include <sys/types.h>

__BEGIN_DECLS

#ifdef __GNUC__
#define alloca(x) __builtin_alloca(x)
#else
void *alloca(size_t size) __THROW;
#endif

__END_DECLS

#endif

LinuxTV legacy CVS <linuxtv.org/cvs>