error.c 456 B

123456789101112131415161718192021222324
  1. /*!
  2. \file db/driver/postgres/error.c
  3. \brief DBMI - Low Level PostgreSQL database driver - report errors
  4. This program is free software under the GNU General Public License
  5. (>=v2). Read the file COPYING that comes with GRASS for details.
  6. \author Radim Blazek
  7. */
  8. #include <stdio.h>
  9. #include <grass/gis.h>
  10. #include <grass/dbmi.h>
  11. #include "globals.h"
  12. /* init error message */
  13. void init_error(void)
  14. {
  15. db_d_init_error("PostgreSQL");
  16. }