home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource3 / 161_01 / returnp.c < prev    next >
Encoding:
C/C++ Source or Header  |  1985-08-30  |  149 b   |  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.