summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/include/krb5/base-defs.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/include/krb5/base-defs.h b/src/include/krb5/base-defs.h
index 5915b1bb8..eb20e58cc 100644
--- a/src/include/krb5/base-defs.h
+++ b/src/include/krb5/base-defs.h
@@ -3,12 +3,12 @@
* $Author$
* $Id$
*
- * Copyright 1989 by the Massachusetts Institute of Technology.
+ * Copyright 1989,1990 by the Massachusetts Institute of Technology.
*
* For copying and distribution information, please see the file
* <krb5/mit-copyright.h>.
*
- * <<< Description >>>
+ * Basic definitions for Kerberos V5 library
*/
#include <krb5/copyright.h>
@@ -37,6 +37,7 @@ typedef krb5_ui_2 krb5_cksumtype;
typedef krb5_ui_2 krb5_authdatatype;
typedef krb5_int32 krb5_error_code;
+typedef krb5_int32 krb5_deltat;
typedef struct _krb5_data {
int length;
@@ -48,8 +49,10 @@ typedef krb5_data ** krb5_principal; /* array of strings */
/* CONVENTION: realm is first elem. */
#ifdef __STDC__
typedef void * krb5_pointer;
+#define PROTOTYPE(x) x
#else
typedef char * krb5_pointer;
+#define PROTOTYPE(x) ()
#endif /* __STDC__ */
#endif /* __KRB5_BASE_DEFS__ */