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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1985-08-30
|
149 b
|
8 lines
/* returnp - reveal the return pointer of my calling function */
#include "config.h"
int returnp(pa)
int *pa;
{
return (pa[RETOFFSET]);
}