summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/krb5/error_def.h24
-rw-r--r--src/include/krb5/sysincl.h28
2 files changed, 52 insertions, 0 deletions
diff --git a/src/include/krb5/error_def.h b/src/include/krb5/error_def.h
new file mode 100644
index 000000000..b5f3bdf0b
--- /dev/null
+++ b/src/include/krb5/error_def.h
@@ -0,0 +1,24 @@
+/*
+ * $Source$
+ * $Author$
+ * $Id$
+ *
+ * Copyright 1990 by the Massachusetts Institute of Technology.
+ *
+ * For copying and distribution information, please see the file
+ * <krb5/copyright.h>.
+ *
+ * Error code definitions.
+ */
+
+#include <krb5/copyright.h>
+
+#ifndef KRB5_ERROR_DEF__
+#define KRB5_ERROR_DEF__
+
+#include "../../error_tables/krb5_err.h"
+#include "../../error_tables/kdb5_err.h"
+#include "../../error_tables/isode_err.h"
+#include <errno.h>
+
+#endif /* KRB5_ERROR_DEF__ */
diff --git a/src/include/krb5/sysincl.h b/src/include/krb5/sysincl.h
new file mode 100644
index 000000000..cff7e0a2c
--- /dev/null
+++ b/src/include/krb5/sysincl.h
@@ -0,0 +1,28 @@
+/*
+ * $Source$
+ * $Author$
+ * $Id$
+ *
+ * Copyright 1990 by the Massachusetts Institute of Technology.
+ *
+ * For copying and distribution information, please see the file
+ * <krb5/copyright.h>.
+ *
+ * System include files, for various things.
+ */
+
+#include <krb5/copyright.h>
+
+#ifndef KRB5_SYSINCL__
+#define KRB5_SYSINCL__
+
+#include <sys/types.h> /* needed for much of the reset */
+#include <sys/time.h> /* struct timeval, utimes() */
+#include <sys/stat.h> /* struct stat, stat() */
+#include <sys/param.h> /* MAXPATHLEN */
+#if defined(unix) || defined(__unix__)
+#include <sys/file.h> /* prototypes for file-related
+ syscalls; flags for open &
+ friends */
+#endif
+#endif /* KRB5_SYSINCL__ */