don't include bit types, the user must do that

#ifdef wrap


git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@14771 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2005-04-10 19:18:13 +00:00
parent 5a741de6cd
commit 1ca7fa435c
3 changed files with 12 additions and 36 deletions

View File

@@ -33,18 +33,8 @@
/* $Id$ */
#include <stdlib.h>
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_SYS_BITYPES_H
#include <sys/bitypes.h>
#endif
#ifdef KRB5
#include <krb5-types.h>
#elif defined(KRB4)
#include <ktypes.h>
#endif
#ifndef HEIM_MD4_H
#define HEIM_MD4_H 1
struct md4 {
unsigned int sz[2];
@@ -57,3 +47,5 @@ typedef struct md4 MD4_CTX;
void MD4_Init (struct md4 *m);
void MD4_Update (struct md4 *m, const void *p, size_t len);
void MD4_Final (void *res, struct md4 *m);
#endif /* HEIM_MD4_H */