Hi all,
I was looking at the source code (FreeBSD 9) and found that most of the programs have an ifndef similar to the following (in /usr/src/usr.bin/su/su.c):
What is this ifndef for? Are these some configuration information? Documented somewhere? Please let me know.
Thanks,
asp5.
I was looking at the source code (FreeBSD 9) and found that most of the programs have an ifndef similar to the following (in /usr/src/usr.bin/su/su.c):
Code:
#ifndef lint
static const char copyright[] =
"@(#) Copyright (c) 1989, 1993\n\
The Regents of the University of California. All rights reserved.\n";
#endif
What is this ifndef for? Are these some configuration information? Documented somewhere? Please let me know.
Thanks,
asp5.