mirror of
https://github.com/postgres/postgres.git
synced 2026-02-15 16:48:17 -05:00
Also performed an initial run through of upgrading our Copyright date to extend to 2005 ... first run here was very simple ... change everything where: grep 1996-2004 && the word 'Copyright' ... scanned through the generated list with 'less' first, and after, to make sure that I only picked up the right entries ...
17 lines
489 B
C
17 lines
489 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* help_config.h
|
|
* Interface to the --help-config option of main.c
|
|
*
|
|
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/utils/help_config.h,v 1.7 2004/12/31 22:03:46 pgsql Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef HELP_CONFIG_H
|
|
#define HELP_CONFIG_H 1
|
|
|
|
extern int GucInfoMain(void);
|
|
|
|
#endif
|