Andre Baresel - 2004-01-03

Logged In: YES
user_id=661524

Another problem that comes with conditionals is the possible
redefinition of macros -- this is a good example by the
authors of the paper (found at their webpages
http://jerry.cs.uiuc.edu/~garrido/CRefactory.html\):

#if SYSTEM == SYSV
#define HDR sysv.h
#elif SYSTEM == BSD
#define HDR bsd.h
#else
#define HDR default.h
#endif
#include HDR