diff options
Diffstat (limited to 'util/mutex.h')
-rw-r--r-- | util/mutex.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/mutex.h b/util/mutex.h index 8a13226..81121a4 100644 --- a/util/mutex.h +++ b/util/mutex.h @@ -2,14 +2,14 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +#ifndef UTIL_MUTEX_H_ +#define UTIL_MUTEX_H_ + /* * A simple mutex wrapper, supporting locks and read-write locks. * You should assume the locks are *not* re-entrant. */ -#ifndef RE2_UTIL_MUTEX_H_ -#define RE2_UTIL_MUTEX_H_ - #include <stdlib.h> #if !defined(_WIN32) @@ -210,4 +210,4 @@ class WriterMutexLock { } // namespace re2 -#endif /* #define RE2_UTIL_MUTEX_H_ */ +#endif // UTIL_MUTEX_H_ |