summaryrefslogtreecommitdiffstats
path: root/src/include/bstring.h
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2002-06-12 19:43:54 +0000
committerKen Raeburn <raeburn@mit.edu>2002-06-12 19:43:54 +0000
commit72e2a13e24d1d47b8169f6d980ed8f291998d38c (patch)
tree81cf9991b3c38b7a4075e0eb47e60310076ddfce /src/include/bstring.h
parent259e8066e178d3c70aaf3cc7b891b8ef51527038 (diff)
downloadkrb5-72e2a13e24d1d47b8169f6d980ed8f291998d38c.tar.gz
krb5-72e2a13e24d1d47b8169f6d980ed8f291998d38c.tar.xz
krb5-72e2a13e24d1d47b8169f6d980ed8f291998d38c.zip
* bsdlib.h, bstring.h, fake-stdlib.h: Deleted
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14497 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include/bstring.h')
-rw-r--r--src/include/bstring.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/include/bstring.h b/src/include/bstring.h
deleted file mode 100644
index c7d0d6137..000000000
--- a/src/include/bstring.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * #include file for bstring(3) & sys5 version functions
- * home.
- */
-#ifndef __BSTRING__
-#define __BSTRING__
-#if defined(__STDC__) || defined(_WINDOWS)
-/* compat-sys5 */
-/* these are in <string.h> */
-extern int bcmp (const char *, const char *, int );
-extern int bcopy (const char *, char *, int );
-extern int bzero (char *, int );
-#else /* STDC */
-/* compat-sys5 */
-extern char *memccpy ();
-extern char *memchr ();
-extern int memcmp ();
-extern char *memcpy ();
-extern char *memset ();
-
-extern int bcmp ();
-extern int bcopy ();
-extern int bzero ();
-
-#endif /* STDC */
-#endif /* __BSTRING__ */