summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1994-06-21 01:27:54 +0000
committerTheodore Tso <tytso@mit.edu>1994-06-21 01:27:54 +0000
commit0f37cc4c8366191eb72d6226915da12db1787983 (patch)
tree9eed0721731a4bbcda27007246c8003f6c66f04c /src/include
parent7d22b5fb110837628b1ddb0dbc5e3772e2630dda (diff)
downloadkrb5-0f37cc4c8366191eb72d6226915da12db1787983.tar.gz
krb5-0f37cc4c8366191eb72d6226915da12db1787983.tar.xz
krb5-0f37cc4c8366191eb72d6226915da12db1787983.zip
Shouldn't be used. Should be installed during the make includes phase
of the imake build. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@3872 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
-rw-r--r--src/include/com_err.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/include/com_err.h b/src/include/com_err.h
deleted file mode 100644
index 7bea010043..0000000000
--- a/src/include/com_err.h
+++ /dev/null
@@ -1,36 +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
-
-#ifdef __STDC__
-#ifndef __HIGHC__ /* gives us STDC but not stdarg */
-#include <stdarg.h>
-#else
-#include <varargs.h>
-#endif
-/* ANSI C -- use prototypes etc */
-void com_err (const char *, long, const char *, ...);
-char const *error_message (long);
-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 ()) (const char *, long, const char *, va_list);
-#else
-/* no prototypes */
-void com_err ();
-char *error_message ();
-void (*com_err_hook) ();
-void (*set_com_err_hook ()) ();
-void (*reset_com_err_hook ()) ();
-#endif
-
-#define __COM_ERR_H
-#endif /* ! defined(__COM_ERR_H) */