summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJohn Kohl <jtkohl@mit.edu>1990-01-17 17:29:35 +0000
committerJohn Kohl <jtkohl@mit.edu>1990-01-17 17:29:35 +0000
commitbca6305204b543d05bee52f82c8835a89dca1432 (patch)
tree0ce4ef4e1343711d5d0aaf52e962db71fa3a44c1 /src
parent75d262a3a46c8f483f7a4e5504ef34fc360fb722 (diff)
downloadkrb5-bca6305204b543d05bee52f82c8835a89dca1432.tar.gz
krb5-bca6305204b543d05bee52f82c8835a89dca1432.tar.xz
krb5-bca6305204b543d05bee52f82c8835a89dca1432.zip
add description
insert PROTOTYPE() macro defs add krb5_deltat git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@111 dc483132-0cff-0310-8789-dd5450dbe970
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__ */