Problem

Red_Zmaja

Domaćin
Poruka
3.211
Kad pravim exe izbaci mi tri erorra. Ako neko zna nek mi pomogne. Josh sam pocetnik pa ako je neshto trivijalno budite blagi.
#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

A greshka je sledeca:
missing ';' before type 'void'
'__BEGIN_DECLS' : missing storage-class or type specifiers
fatal error C1004: unexpected end of file found
Error executing cl.exe.
 

Back
Top