diff options
author | Artyom Skrobov <Artyom.Skrobov@arm.com> | 2014-06-12 16:07:56 +0000 |
---|---|---|
committer | Artyom Skrobov <Artyom.Skrobov@arm.com> | 2014-06-12 16:07:56 +0000 |
commit | 8bafe4b9426fc14e37f52b5ca589c636e4662012 (patch) | |
tree | 6741051e6e2f71141fd393d81aeda3ac4e750c9f /llvm/lib/Support/regex2.h | |
parent | 0921f6bdb85e4e6ae15f2c0bbd41a45e4f8f66dd (diff) | |
download | bcm5719-llvm-8bafe4b9426fc14e37f52b5ca589c636e4662012.tar.gz bcm5719-llvm-8bafe4b9426fc14e37f52b5ca589c636e4662012.zip |
adding re-include guards into lib/Support/reg*.h
llvm-svn: 210794
Diffstat (limited to 'llvm/lib/Support/regex2.h')
-rw-r--r-- | llvm/lib/Support/regex2.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/lib/Support/regex2.h b/llvm/lib/Support/regex2.h index 21659c34449..d81bfbc97d0 100644 --- a/llvm/lib/Support/regex2.h +++ b/llvm/lib/Support/regex2.h @@ -35,6 +35,9 @@ * @(#)regex2.h 8.4 (Berkeley) 3/20/94 */ +#ifndef LLVM_SUPPORT_REGEX2_H +#define LLVM_SUPPORT_REGEX2_H + /* * internals of regex_t */ @@ -155,3 +158,5 @@ struct re_guts { /* misc utilities */ #define OUT (CHAR_MAX+1) /* a non-character value */ #define ISWORD(c) (isalnum(c&0xff) || (c) == '_') + +#endif |