adding re-include guards into lib/Support/reg*.h

llvm-svn: 210794
diff --git a/llvm/lib/Support/regex2.h b/llvm/lib/Support/regex2.h
index 21659c3..d81bfbc 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 @@
 /* misc utilities */
 #define	OUT	(CHAR_MAX+1)	/* a non-character value */
 #define	ISWORD(c)	(isalnum(c&0xff) || (c) == '_')
+
+#endif