home *** CD-ROM | disk | FTP | other *** search
- /* ------------------------------------------------------ */
- /* FILE1.C */
- /* (c) 1990 Borland International */
- /* All rights reserved. */
- /* ------------------------------------------------------ */
- /* veröffentlicht in: DOS toolbox 2'92 */
- /* ------------------------------------------------------ */
-
- int gi; // Global that can be shared between files.
- static int si; // Localized global, can't be shared.
- extern int ei; // Global int reference.
- // It's in a different file.
-
- void f(void);
-
- // ------------------------------------------------------- *
-
- int main(void) {
- gi = 1;
- si = 2;
- ei = 3;
- f();
- return 0;
- } // end of main()
-
- /* ------------------------------------------------------ */
- /* Ende von FILE1.C */
-
-