summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorJohn Kohl <jtkohl@mit.edu>1990-01-17 10:49:34 +0000
committerJohn Kohl <jtkohl@mit.edu>1990-01-17 10:49:34 +0000
commitf8f45a88fd61002399717116f690f423632182e3 (patch)
tree6045abd0976ad8c6258e16d0a42aa5bb6106e1a6 /src/include
parentc2702b2037a7c92ecf220b146d461e653364ecf0 (diff)
change names to be prefixed with krb5_
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@96 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
-rw-r--r--src/include/krb5/hostaddr.h2
-rw-r--r--src/include/krb5/wordsize.h12
2 files changed, 7 insertions, 7 deletions
diff --git a/src/include/krb5/hostaddr.h b/src/include/krb5/hostaddr.h
index 81e7472ac..1b3d752ce 100644
--- a/src/include/krb5/hostaddr.h
+++ b/src/include/krb5/hostaddr.h
@@ -20,7 +20,7 @@
typedef struct _krb5_address {
krb5_addrtype addrtype;
int length;
- octet contents[1]; /* actually can be more, depending
+ krb5_octet contents[1]; /* actually can be more, depending
on length */
} krb5_address;
diff --git a/src/include/krb5/wordsize.h b/src/include/krb5/wordsize.h
index d56074f29..305fdc9d2 100644
--- a/src/include/krb5/wordsize.h
+++ b/src/include/krb5/wordsize.h
@@ -18,16 +18,16 @@
#ifdef BITS16
#define __OK
-typedef int int16;
-typedef long int32;
-typedef unsigned char octet;
+typedef int krb5_int16;
+typedef long krb5_int32;
+typedef unsigned char krb5_octet;
#endif
#ifdef BITS32
#define __OK
-typedef short int16;
-typedef int int32;
-typedef unsigned char octet;
+typedef short krb5_int16;
+typedef int krb5_int32;
+typedef unsigned char krb5_octet;
#endif
#ifndef __OK