Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GCC typeof extension

I don't understand why this works:

/* gcc range extension */
__extension__ static int fn(int n)
{
    switch (n) {
        case 0: return 0;
        case 1 ... 1000: return 1;
        default: return -1;
    }
}

But this does not:

/* gcc typeof extension */
__extension__ static void fn(int n)
{
    typeof(n) a = n;

    printf("%d\n", a);
}

gcc returns:

demo.c:14: warning: implicit declaration of function ‘typeof’
demo.c:14: warning: nested extern declaration of ‘typeof’
demo.c:14: error: expected ‘;’ before ‘a’
demo.c:16: error: ‘a’ undeclared (first use in this function)
demo.c:16: error: (Each undeclared identifier is reported only once
demo.c:16: error: for each function it appears in.)

I know I can compile with -std=gnu99 to avoid the error but the first one works with -std=c99 and uses also an extension

like image 326
David Ranieri Avatar asked Dec 05 '22 12:12

David Ranieri


1 Answers

Non-ANSI compatible keywords are not ever reenabled by __extension__ (the only effect of __extension__ is warning suppression for -pedantic). Use __typeof__ if you want to compile in ANSI mode.

like image 177
Anton Kovalenko Avatar answered Dec 28 '22 08:12

Anton Kovalenko