diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-11-24 05:32:56 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-11-24 05:32:56 +0000 |
commit | 49656346b87fd4a1c7ea82b3b909a39daa9a2dd1 (patch) | |
tree | 5f1ddf9f42c9bd8c65688b26b9209d62ba2e6355 /src/include/commands/dbcommands.h | |
parent | 36e3df07674ba219799928c7048e2e9f2d660349 (diff) |
Move dbcommands.c to commands/. It should not be in the parser directory.
Diffstat (limited to 'src/include/commands/dbcommands.h')
-rw-r--r-- | src/include/commands/dbcommands.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/include/commands/dbcommands.h b/src/include/commands/dbcommands.h new file mode 100644 index 00000000000..7717fd9d153 --- /dev/null +++ b/src/include/commands/dbcommands.h @@ -0,0 +1,26 @@ +/*------------------------------------------------------------------------- + * + * dbcommands.h-- + * + * + * + * Copyright (c) 1994, Regents of the University of California + * + * $Id: dbcommands.h,v 1.1 1997/11/24 05:32:51 momjian Exp $ + * + *------------------------------------------------------------------------- + */ +#ifndef DBCOMMANDS_H +#define DBCOMMANDS_H + +/* + * Originally from tmp/daemon.h. The functions declared in daemon.h does not + * exist; hence removed. -- AY 7/29/94 + */ +#define SIGKILLDAEMON1 SIGINT +#define SIGKILLDAEMON2 SIGTERM + +extern void createdb(char *dbname, char *dbpath); +extern void destroydb(char *dbname); + +#endif /* DBCOMMANDS_H */ |