/* utils.h */ #ifndef _utils_h_ #define _utils_h_ #ifdef _NO_PROTO void FixSize() ; void Dohelp() ; void Doerror() ; void Usage() ; void *xmalloc() ; void *xrealloc() ; int casecmp() ; #else void FixSize(Widget, XtPointer, XConfigureEvent *) ; void Dohelp(Widget, Widget) ; void Doerror(Widget, char *, char *) ; void Usage(void) ; void *xmalloc(size_t) ; void *xrealloc(void *, size_t) ; int casecmp(char *, char *) ; #endif extern char *errorstring ; #endif /* _utils_h_ */