diff options
author | Bruce Momjian | 1999-05-26 12:57:23 +0000 |
---|---|---|
committer | Bruce Momjian | 1999-05-26 12:57:23 +0000 |
commit | 278bbf4572996e4097eac0c0d169dea1616ad0b6 (patch) | |
tree | 240f44ee8338d26ad0ff7ce8d8e9733a0e3880df /src/include/lib | |
parent | 180186272ac16c74d2a822fee3878e576f265d08 (diff) |
Make functions static or NOT_USED as appropriate.
Diffstat (limited to 'src/include/lib')
-rw-r--r-- | src/include/lib/stringinfo.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/lib/stringinfo.h b/src/include/lib/stringinfo.h index dbf901c67e6..da806aa433c 100644 --- a/src/include/lib/stringinfo.h +++ b/src/include/lib/stringinfo.h @@ -9,7 +9,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: stringinfo.h,v 1.12 1999/05/25 16:13:59 momjian Exp $ + * $Id: stringinfo.h,v 1.13 1999/05/26 12:56:27 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -60,11 +60,13 @@ typedef StringInfoData *StringInfo; *------------------------- */ +#ifdef NOT_USED /*------------------------ * makeStringInfo * Create an empty 'StringInfoData' & return a pointer to it. */ extern StringInfo makeStringInfo(void); +#endif /*------------------------ * initStringInfo |