home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OpenStep 4.2J (Developer)
/
os42jdev.iso
/
NextDeveloper
/
Source
/
GNU
/
uucp
/
Uucp.framework
/
uucp.subproj
/
xfree.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-10-09
|
255 b
|
16 lines
/* xfree.c
Some versions of free (like the one in SCO Unix 3.2.2) don't handle
null pointers correctly, so we go through our own routine. */
#include "uucp.h"
#include "uudefs.h"
void
xfree (p)
pointer p;
{
if (p != NULL)
free (p);
}