home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / c / other / learn / fileone.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-10-07  |  147 b   |  11 lines

  1. /* FILEONE.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.