From: Simon Josefsson Date: Thu, 28 Aug 2008 11:25:30 +0000 (+0200) Subject: Protect against double inclusion. X-Git-Tag: gnutls_2_5_5~36 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=96073e191ea74b68fe57599099516ecb70bdd331;p=thirdparty%2Fgnutls.git Protect against double inclusion. --- diff --git a/lib/gnutls_errors.h b/lib/gnutls_errors.h index 667bd62bac..f248e3e52a 100644 --- a/lib/gnutls_errors.h +++ b/lib/gnutls_errors.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation + * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2008 Free Software Foundation * * Author: Nikos Mavrogiannopoulos * @@ -22,6 +22,9 @@ * */ +#ifndef GNUTLS_ERRORS_H +# define GNUTLS_ERRORS_H + #include #define GNUTLS_E_INT_RET_0 -1251 @@ -71,3 +74,5 @@ extern int _gnutls_log_level; void _gnutls_null_log (void *, ...); #endif /* C99_MACROS */ + +#endif /* GNUTLS_ERRORS_H */