diff options
Diffstat (limited to 'lib/Support/regutils.h')
-rw-r--r-- | lib/Support/regutils.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Support/regutils.h b/lib/Support/regutils.h index d0ee100..49a975c 100644 --- a/lib/Support/regutils.h +++ b/lib/Support/regutils.h @@ -35,6 +35,9 @@ * @(#)utils.h 8.3 (Berkeley) 3/20/94 */ +#ifndef LLVM_SUPPORT_REGUTILS_H +#define LLVM_SUPPORT_REGUTILS_H + /* utility definitions */ #define NC (CHAR_MAX - CHAR_MIN + 1) typedef unsigned char uch; @@ -51,3 +54,5 @@ typedef unsigned char uch; #ifdef USEBCOPY #define memmove(d, s, c) bcopy(s, d, c) #endif + +#endif |