diff options
Diffstat (limited to 'include/Exceptions.h')
-rw-r--r-- | include/Exceptions.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/Exceptions.h b/include/Exceptions.h index 79078e5..a3fad9e 100644 --- a/include/Exceptions.h +++ b/include/Exceptions.h @@ -8,6 +8,8 @@ #include <string.h> #include <stdlib.h> +class String; + class Base { public: static char * strdup(const char * s); @@ -23,6 +25,7 @@ class Base { static int pipe(int * p, int flag = 0); static pid_t fork(); static void exit(int); + static void printm(int level, String fmt, ...); }; class String; |