mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-09 05:10:23 +00:00
ANSIfication of the hp2ps code. The most important changes are the correct use of the stdarg mechanism (former hacks could bite on other systems, so please tell upstream), inclusion of stdlib.h instead of declaring free yourself, adding a few missed PROTO()s and using size_t for xmalloc and xrealloc.: git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2399
13 lines
416 B
C
13 lines
416 B
C
/* This file is part of hp2ps, a graph drawer for memory profiles.
|
|
Copyright (C) 2002 The University Court of the University of Glasgow.
|
|
This program is governed by the license contained in the file LICENSE. */
|
|
|
|
#ifndef ERROR_H
|
|
#define ERROR_H
|
|
|
|
extern void Error PROTO((const char *, ...));
|
|
extern void Disaster PROTO((const char *, ...));
|
|
extern void Usage PROTO((const char *));
|
|
|
|
#endif /* ERROR_H */
|