blob: 78d3f3e7f17ee7eb39dd8adbd68ce1c61119f55a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/************************************************************************
*
* Purpose: Part two of a two part example showing the
* extern keyword in action.
*
* Author: M. J. Leslie
*
* Date: 24-Oct-95
*
************************************************************************/
int count=5;
main()
{
write_extern();
}
|