GRASS Programmer's Manual  6.4.2(2012)
V_error.c
Go to the documentation of this file.
00001 
00028 #include <stdio.h>
00029 #include <stdarg.h>
00030 #include <grass/gis.h>
00031 #include <grass/vask.h>
00032 
00044 void V_error(const char *fmt, ...)
00045 {
00046     va_list ap;
00047 
00048     va_start(ap, fmt);
00049     fprintf(stderr, "V_ask error: ");
00050     vfprintf(stderr, fmt, ap);
00051     va_end(ap);
00052 
00053     G_sleep(4);
00054 }
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines