error.c 663 B

12345678910111213141516171819202122232425
  1. /**********************************************************
  2. * MODULE: mysql
  3. * AUTHOR(S): Radim Blazek (radim.blazek@gmail.com)
  4. * PURPOSE: MySQL database driver
  5. * COPYRIGHT: (C) 2001 by the GRASS Development Team
  6. * This program is free software under the
  7. * GNU General Public License (>=v2).
  8. * Read the file COPYING that comes with GRASS
  9. * for details.
  10. **********************************************************/
  11. #include <stdio.h>
  12. #include <grass/gis.h>
  13. #include <grass/dbmi.h>
  14. #include "globals.h"
  15. #include "proto.h"
  16. /* init error message */
  17. void init_error(void)
  18. {
  19. db_d_init_error("MySQL");
  20. }