From 4b5aeca704d1e5a454cc4a2f9f693b41c5970645 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Sun, 17 Nov 1996 23:46:31 +0000 Subject: [PATCH] conditionalize git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1039 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/otp/otp.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/otp/otp.h b/lib/otp/otp.h index 8c49bc7be..47720cf85 100644 --- a/lib/otp/otp.h +++ b/lib/otp/otp.h @@ -38,6 +38,9 @@ /* $Id$ */ +#ifndef _OTP_H +#define _OTP_H + #include enum {OTPKEYSIZE = 8}; @@ -95,3 +98,5 @@ void *otp_db_open (void); void otp_db_close (void *); int otp_put (void *, OtpContext *ctx); int otp_get (void *, OtpContext *ctx); + +#endif /* _OTP_H */