aboutsummaryrefslogtreecommitdiff
path: root/e2fslib/et/com_err.h
diff options
context:
space:
mode:
authorGuido Guenther <agx@sigxcpu.org>2007-11-21 16:55:40 +0100
committerGuido Guenther <agx@sigxcpu.org>2007-11-21 16:55:40 +0100
commit498267851d48ee60376dc96411fb8693a5e95a3c (patch)
tree9f1533b742a37b5213dc651e84aff9401df7e640 /e2fslib/et/com_err.h
parent4bf1c0b76bed01bd30c28a089639b88d326ba2c3 (diff)
remove unneeded e2fslib
Diffstat (limited to 'e2fslib/et/com_err.h')
-rw-r--r--e2fslib/et/com_err.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/e2fslib/et/com_err.h b/e2fslib/et/com_err.h
deleted file mode 100644
index f28dce8..0000000
--- a/e2fslib/et/com_err.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * Header file for common error description library.
- *
- * Copyright 1988, Student Information Processing Board of the
- * Massachusetts Institute of Technology.
- *
- * For copyright and distribution info, see the documentation supplied
- * with this package.
- */
-
-#ifndef __COM_ERR_H
-
-typedef long errcode_t;
-
-#ifdef __STDC__
-#include <stdarg.h>
-
-/* ANSI C -- use prototypes etc */
-void com_err (const char *, long, const char *, ...);
-void com_err_va (const char *whoami, errcode_t code, const char *fmt,
- va_list args);
-char const *error_message (long);
-extern void (*com_err_hook) (const char *, long, const char *, va_list);
-void (*set_com_err_hook (void (*) (const char *, long, const char *, va_list)))
- (const char *, long, const char *, va_list);
-void (*reset_com_err_hook (void)) (const char *, long, const char *, va_list);
-int init_error_table(const char * const *msgs, int base, int count);
-#else
-/* no prototypes */
-void com_err ();
-void com_err_va ();
-char *error_message ();
-extern void (*com_err_hook) ();
-void (*set_com_err_hook ()) ();
-void (*reset_com_err_hook ()) ();
-int init_error_table();
-#endif
-
-#define __COM_ERR_H
-#endif /* ! defined(__COM_ERR_H) */