diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-09-19 11:56:09 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-09-19 11:56:09 -0400 |
commit | 53431b091b22a663a428c67f8c617740f5882706 (patch) | |
tree | 40bce78551ac5e0fc32d656ef2d4bf5f1ff5c2dd | |
parent | initial commit of the arm port (diff) | |
download | grovel-53431b091b22a663a428c67f8c617740f5882706.tar.gz grovel-53431b091b22a663a428c67f8c617740f5882706.tar.xz |
fix broken multi-inclusion guard in sys/reg.h
-rw-r--r-- | include/sys/reg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sys/reg.h b/include/sys/reg.h index ebf3fff4..b47452d0 100644 --- a/include/sys/reg.h +++ b/include/sys/reg.h @@ -1,5 +1,5 @@ -#ifndef _SYS_USER_H -#define _SYS_USER_H +#ifndef _SYS_REG_H +#define _SYS_REG_H #include <limits.h> #include <unistd.h> |