home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / dld / test / overlay / chain1.c next >
C/C++ Source or Header  |  1996-09-28  |  222b  |  11 lines

  1. extern char *p;
  2.  
  3. static int large[100000];
  4.  
  5. chain () {
  6.     bzero (large, 100000 * sizeof (int));
  7.     printf ("I am chain1\n");
  8.     p[5] = '2';                /* modify the string holding the next
  9.                        file to be loaded. */
  10. }
  11.