How are macros evaluated in C?

Posted by httpinterpret on Stack Overflow See other posts from Stack Overflow or by httpinterpret
Published on 2010-05-23T13:07:10Z Indexed on 2010/05/23 13:10 UTC
Read the original article Hit count: 115

Filed under:
|
#ifdef CONFIG_IP_MULTIPLE_TABLES
struct fib_table * fib_hash_init(int id)
#else
struct fib_table * _ _init fib_hash_init(int id)
{
    ...
}

How's the value of CONFIG_IP_MULTIPLE_TABLES populated?

© Stack Overflow or respective owner

Related posts about c

    Related posts about macros