summaryrefslogtreecommitdiff
path: root/include/Exceptions.h
diff options
context:
space:
mode:
authorpixel <pixel>2004-11-27 23:45:10 +0000
committerpixel <pixel>2004-11-27 23:45:10 +0000
commitc93f5466134388afa9e4b1a51ce8840d86494779 (patch)
tree7c54c962dfa5ba083c74cc628ff0dd14bc23d466 /include/Exceptions.h
parentae2779e504ca5ae11a87e047b4536a5f428cce4d (diff)
Linux addendum
Diffstat (limited to 'include/Exceptions.h')
-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);