diff options
author | Vadim B. Mikheev <vadim4o@yahoo.com> | 1997-05-20 11:37:33 +0000 |
---|---|---|
committer | Vadim B. Mikheev <vadim4o@yahoo.com> | 1997-05-20 11:37:33 +0000 |
commit | b0dfe8e38e52fc19514983f6391f095c2f595931 (patch) | |
tree | 8c700e35d20fe238e88f76734cd0aede19ee8737 /src | |
parent | 5f893a1e32893d42f6b5c3cd9844564ab2cdfdf1 (diff) | |
download | postgresql-b0dfe8e38e52fc19514983f6391f095c2f595931.tar.gz postgresql-b0dfe8e38e52fc19514983f6391f095c2f595931.zip |
Define FREE(x) as pfree.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/utils/psort.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/utils/psort.h b/src/include/utils/psort.h index a20d2cb7599..169c4bdc70f 100644 --- a/src/include/utils/psort.h +++ b/src/include/utils/psort.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: psort.h,v 1.2 1996/11/04 11:51:23 scrappy Exp $ + * $Id: psort.h,v 1.3 1997/05/20 11:37:33 vadim Exp $ * *------------------------------------------------------------------------- */ @@ -19,7 +19,7 @@ #define SORTMEM (1 << 18) /* 1/4 M - any static memory */ #define MAXTAPES 7 /* 7--See Fig. 70, p273 */ #define TAPEEXT "pg_psort.XXXXXX" /* TEMPDIR/TAPEEXT */ -#define FREE(x) free((char *) x) +#define FREE(x) pfree((char *) x) struct tape { int tp_dummy; /* (D) */ |