GRASS Programmer's Manual  6.5.svn(2014)-r66266
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
V_error.c
Go to the documentation of this file.
1 
28 #include <stdio.h>
29 #include <stdarg.h>
30 #include <grass/gis.h>
31 #include <grass/vask.h>
32 
44 void V_error(const char *fmt, ...)
45 {
46  va_list ap;
47 
48  va_start(ap, fmt);
49  fprintf(stderr, "V_ask error: ");
50  vfprintf(stderr, fmt, ap);
51  va_end(ap);
52 
53  G_sleep(4);
54 }
void G_sleep(unsigned int seconds)
Definition: sleep.c:11
void V_error(const char *fmt,...)
Definition: V_error.c:44