summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/Exceptions.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/Exceptions.h b/include/Exceptions.h
index cf293c8..b630def 100644
--- a/include/Exceptions.h
+++ b/include/Exceptions.h
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Exceptions.h,v 1.38 2004-11-27 21:46:02 pixel Exp $ */
+/* $Id: Exceptions.h,v 1.39 2004-11-27 23:45:10 pixel Exp $ */
#ifndef __EXCEPTIONS_H__
#define __EXCEPTIONS_H__
@@ -41,6 +41,8 @@ typedef int pid_t;
class String;
struct ugly_string;
+void xfree(unsigned char *&);
+
class Base {
public:
virtual ~Base() {};
@@ -85,7 +87,6 @@ class GeneralException : public Base {
char * xstrdup(const char *);
void * xmalloc(size_t) throw (GeneralException);
-void xfree(unsigned char *&);
void * xrealloc(void *, size_t);
int xpipe(int *, int = 0) throw (GeneralException);
pid_t xfork() throw (GeneralException);