diff options
author | pixel <pixel> | 2004-11-27 23:45:10 +0000 |
---|---|---|
committer | pixel <pixel> | 2004-11-27 23:45:10 +0000 |
commit | c93f5466134388afa9e4b1a51ce8840d86494779 (patch) | |
tree | 7c54c962dfa5ba083c74cc628ff0dd14bc23d466 /include/Exceptions.h | |
parent | ae2779e504ca5ae11a87e047b4536a5f428cce4d (diff) |
Linux addendum
Diffstat (limited to 'include/Exceptions.h')
-rw-r--r-- | include/Exceptions.h | 5 |
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); |