*** empty log message ***
authorJohn Kohl <jtkohl@mit.edu>
Wed, 23 May 1990 13:55:50 +0000 (13:55 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Wed, 23 May 1990 13:55:50 +0000 (13:55 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@923 dc483132-0cff-0310-8789-dd5450dbe970

src/include/krb5/error_def.h [new file with mode: 0644]
src/include/krb5/sysincl.h [new file with mode: 0644]

diff --git a/src/include/krb5/error_def.h b/src/include/krb5/error_def.h
new file mode 100644 (file)
index 0000000..b5f3bdf
--- /dev/null
@@ -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 (file)
index 0000000..cff7e0a
--- /dev/null
@@ -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__ */