diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-04-13 01:09:45 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-04-13 01:09:45 +0200 |
commit | a5268a54131f53b51e778a7f6157da53cdbe3142 (patch) | |
tree | adb177241ca239ed0d64f78a2fea339ee025123a /sys/src/liboventi/fatal.c | |
parent | ffb0199247c2c748887f0782538545c75a304f88 (diff) |
remove unused liboventi
Diffstat (limited to 'sys/src/liboventi/fatal.c')
-rw-r--r-- | sys/src/liboventi/fatal.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/sys/src/liboventi/fatal.c b/sys/src/liboventi/fatal.c deleted file mode 100644 index 1d593fe02..000000000 --- a/sys/src/liboventi/fatal.c +++ /dev/null @@ -1,16 +0,0 @@ -#include <u.h> -#include <libc.h> -#include <oventi.h> - -void -vtFatal(char *fmt, ...) -{ - va_list arg; - - va_start(arg, fmt); - fprint(2, "fatal error: "); - vfprint(2, fmt, arg); - fprint(2, "\n"); - va_end(arg); - exits("vtFatal"); -} |