From: Bruno Haible Date: Wed, 24 Aug 2005 11:03:16 +0000 (+0000) Subject: Add multiple-inclusion guard. X-Git-Tag: v0.15~423 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79ff7c2cb4920cdacfc5d9225a7496b56997f828;p=thirdparty%2Fgettext.git Add multiple-inclusion guard. --- diff --git a/gettext-runtime/intl/ChangeLog b/gettext-runtime/intl/ChangeLog index c09a26bef..87cc8ecc7 100644 --- a/gettext-runtime/intl/ChangeLog +++ b/gettext-runtime/intl/ChangeLog @@ -1,3 +1,7 @@ +2005-08-21 Bruno Haible + + * lock.h: Add multiple inclusion guard. + 2005-08-19 Bruno Haible * localealias.c (read_alias_file): In case of failure, close the diff --git a/gettext-runtime/intl/lock.h b/gettext-runtime/intl/lock.h index f82e4a32f..be99139dc 100644 --- a/gettext-runtime/intl/lock.h +++ b/gettext-runtime/intl/lock.h @@ -59,6 +59,9 @@ */ +#ifndef _LOCK_H +#define _LOCK_H + /* ========================================================================= */ #if USE_POSIX_THREADS @@ -792,3 +795,7 @@ typedef int gl_once_t; while (0) #endif + +/* ========================================================================= */ + +#endif /* _LOCK_H */