view tests/mini/alloca1.d @ 1651:cb960b882ca3 default tip

bindings were moved to dsource.org/projects/bindings/
author Moritz Warning <moritzwarning@web.de>
date Thu, 20 May 2010 20:05:03 +0200
parents 44f08170f4ef
children
line wrap: on
line source

module alloca1;

pragma(alloca) void* alloca(uint);

extern(C) int printf(char*, ...);

void main()
{
    int n = 16;
    int* p = cast(int*)alloca(n*int.sizeof);
    int[] a = p[0..n];
    a[] = 0;
    foreach(i,v; a) {
        printf("a[%2d] = %d\n", i, v);
    }
}