blob: 239b015db2177077ffdc2380615a4030e443d344 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* 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);
}
|