home *** CD-ROM | disk | FTP | other *** search
- /*---------------------------------------------------------------
- *
- * FILE: main.c
- *
- * $Header: /private/postgres/src/main/RCS/main.c,v 1.2 1991/05/13 01:49:14 kemnitz Exp $
- *
- * The reason that `main()' is defined in a separate file in a
- * separate directory is to be able to easily link all the postgres
- * code (as opposed to just cinterface.a) with test programs (which
- * have their own `main').
- *
- */
-
- main(argc, argv)
- int argc;
- char *argv[];
- {
- if (argc > 1)
- {
- if (!strcmp(argv[1], "-boot"))
- {
- BootstrapMain(argc, argv);
- }
- else
- {
- PostgresMain(argc, argv);
- }
- }
- else
- {
- PostgresMain(argc, argv);
- }
- }
-