]> Zhao Yanbai Git Server - minix.git/commit
libc!setmode.c: Avoid #if inside macro call
authorAntoine Leca <antoine.leca.1@gmail.com>
Mon, 25 Oct 2010 17:03:36 +0000 (18:03 +0100)
committerBen Gras <ben@minix3.org>
Thu, 23 Jun 2011 15:54:17 +0000 (17:54 +0200)
commit6d8d7a88b273fc8d9e99d2ddc372d769d767d353
treee8c01cca6241fa753fe0981a4775d1343c4054ab
parent3b82f9106db9feda15246bac93146e09a3ad4563
libc!setmode.c: Avoid #if inside macro call

#if inside macro call is undefined behaviour under the C standard
(3.8.3 paragraph 10 for C90, 6.8.10 paragraph 11 for C99).
The same effect can be achieved with a slightly more verbose construct,
putting the whole macro call inside the #ifdef/#else/#endif.
lib/libc/other/setmode.c