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 / foo / add1.cc next >
C/C++ Source or Header  |  1996-09-28  |  121b  |  12 lines

  1. #include <stdio.h>
  2.  
  3. extern void add2 (void);
  4.  
  5. void
  6. add1 (void)
  7. {
  8.   printf ("in add1\n");
  9.   fflush (stdout);
  10.   add2 ();
  11. }
  12.