diff options
| author | Marc G. Fournier <scrappy@hub.org> | 1999-02-21 03:49:55 +0000 |
|---|---|---|
| committer | Marc G. Fournier <scrappy@hub.org> | 1999-02-21 03:49:55 +0000 |
| commit | 8c3e8a8a0e432b709ad45b452612f744bacf1514 (patch) | |
| tree | f6dd8c40d09730dd5a44cd1ac19d4c50b002b47c /src/include | |
| parent | 1efa3f42280fce080e47fc4491a809240cbe464a (diff) | |
| download | postgresql-8c3e8a8a0e432b709ad45b452612f744bacf1514.tar.gz | |
From: Tatsuo Ishii <t-ishii@sra.co.jp>
Ok. I made patches replacing all of "#if FALSE" or "#if 0" to "#ifdef
NOT_USED" for current. I have tested these patches in that the
postgres binaries are identical.
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/executor/nodeMaterial.h | 4 | ||||
| -rw-r--r-- | src/include/libpq/crypt.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/include/executor/nodeMaterial.h b/src/include/executor/nodeMaterial.h index 26078fc1b0..fddc4d1edb 100644 --- a/src/include/executor/nodeMaterial.h +++ b/src/include/executor/nodeMaterial.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodeMaterial.h,v 1.9 1999/02/13 23:21:26 momjian Exp $ + * $Id: nodeMaterial.h,v 1.10 1999/02/21 03:49:44 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -23,7 +23,7 @@ extern int ExecCountSlotsMaterial(Material *node); extern void ExecEndMaterial(Material *node); extern void ExecMaterialReScan(Material *node, ExprContext *exprCtxt, Plan *parent); -#if 0 +#ifdef NOT_USED extern List ExecMaterialMarkPos(Material *node); extern void ExecMaterialRestrPos(Material *node); diff --git a/src/include/libpq/crypt.h b/src/include/libpq/crypt.h index b60b4b8404..d6023332be 100644 --- a/src/include/libpq/crypt.h +++ b/src/include/libpq/crypt.h @@ -22,7 +22,7 @@ extern int pwd_cache_count; extern char *crypt_getpwdfilename(void); extern char *crypt_getpwdreloadfilename(void); -#if 0 +#ifdef NOT_USED extern MsgType crypt_salt(const char *user); #endif |
