diff options
| author | John Kohl <jtkohl@mit.edu> | 1990-05-23 13:55:50 +0000 |
|---|---|---|
| committer | John Kohl <jtkohl@mit.edu> | 1990-05-23 13:55:50 +0000 |
| commit | d97d32af6dbf3324a96a90c63d30c3e09678fd22 (patch) | |
| tree | 71069f8207b6e8743603e75735180e06045ab0d0 /src/include | |
| parent | d3cb1b4eb9e21265ddad1fbcc8aed9464bf7c8f7 (diff) | |
| download | krb5-d97d32af6dbf3324a96a90c63d30c3e09678fd22.tar.gz krb5-d97d32af6dbf3324a96a90c63d30c3e09678fd22.tar.xz krb5-d97d32af6dbf3324a96a90c63d30c3e09678fd22.zip | |
*** empty log message ***
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@923 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/krb5/error_def.h | 24 | ||||
| -rw-r--r-- | src/include/krb5/sysincl.h | 28 |
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__ */ |
