/* * file to demonstrate the use of header files * in multifile C programs * * this handles glob right * it has to be defined in one of the source code files * * if compiled with -DNOGLOB, it doesn't define glob * * Matt Bishop, ECS 36A * -- June 4, 2024 original program */ #include int glob; /* an example global variable */ void b(void); /* an example function prototype */