home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_100 / 161_01 / returnp.c < prev    next >
C/C++ Source or Header  |  1985-08-29  |  149b  |  8 lines

  1. /* returnp - reveal the return pointer of my calling function */
  2. #include "config.h"
  3. int returnp(pa)
  4.     int *pa;
  5.     {
  6.     return (pa[RETOFFSET]);
  7.     }
  8.