Re: [PATCH] 2.5.21 kill warnings 4/19

Thunder from the hill (thunder@ngforever.de)
Mon, 10 Jun 2002 14:03:42 -0600 (MDT)


Hi,

On Mon, 10 Jun 2002, Andrew Morton wrote:
> wrt the __func__ thing: is it possible to do:
>
> #if (compiler version test)
> #define __FUNCTION__ __func__
> #endif
>
> to kill the 3.x warning?

#include <stdio.h>
#define __FUNCTION__ __func__

int main(int argc, char **argv) {
int i;

for (i = 0; i < argc; i++) {
printf(__FUNCTION__ " encountered argument ");
printf("%s\n", argv[i]);
}

exit(0);
}

Obviously, yes.

Regards,
Thunder

-- 
German attitude becoming        |	Thunder from the hill at ngforever
rightaway popular:		|
       "Get outa my way,  	|	free inhabitant not directly
    for I got a mobile phone!"	|	belonging anywhere

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/