/* File: if3.c
   This program demonstrates how #ifndef works.
   Here we do not #include the standard 
   header files.
*/

#define MARKER

main() {

#ifndef MARKER
   printf("MARKER has not been defined\n") ;
#else
   printf("MARKER has been defined\n") ;
#endif

}
