home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / qc / qc25 / file1.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-11-15  |  144 b   |  11 lines

  1. /* FILE1.C: Visibility in multiple source files.
  2. */
  3.  
  4. int chico = 20, harpo = 30;
  5. extern void yonder( void );
  6.  
  7. main()
  8. {
  9.    yonder();
  10. }
  11.