diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-03-13 23:32:26 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-03-13 23:32:26 +0000 |
commit | bb4c88c29ab312e2be118ac857daa7c93399d6e1 (patch) | |
tree | 56fb2cf6580bc322f21da2452d1219b79007b2d3 /src | |
parent | db5ea2c5cb3750bb75d4b0a0b4f6e2a4ecb2cd7d (diff) | |
download | postgresql-bb4c88c29ab312e2be118ac857daa7c93399d6e1.tar.gz postgresql-bb4c88c29ab312e2be118ac857daa7c93399d6e1.zip |
Add missing identification comment, remove entirely inappropriate include
of postgres.h.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/postmaster/fork_process.h | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/include/postmaster/fork_process.h b/src/include/postmaster/fork_process.h index 945de366711..c089630034d 100644 --- a/src/include/postmaster/fork_process.h +++ b/src/include/postmaster/fork_process.h @@ -1,8 +1,17 @@ +/*------------------------------------------------------------------------- + * + * fork_process.h + * Exports from postmaster/fork_process.c. + * + * Copyright (c) 1996-2005, PostgreSQL Global Development Group + * + * $PostgreSQL: pgsql/src/include/postmaster/fork_process.h,v 1.2 2005/03/13 23:32:26 tgl Exp $ + * + *------------------------------------------------------------------------- + */ #ifndef FORK_PROCESS_H #define FORK_PROCESS_H -#include "postgres.h" - extern pid_t fork_process(void); -#endif /* ! FORK_PROCESS_H */ +#endif /* FORK_PROCESS_H */ |