diff options
author | Tormod Volden <debian.tormod@gmail.com> | 2011-12-04 23:36:19 +0100 |
---|---|---|
committer | Tormod Volden <debian.tormod@gmail.com> | 2012-01-03 22:40:54 +0100 |
commit | 0600b7279382c66445506fa98dc50299574a1abd (patch) | |
tree | b36367160a623acbb1e81f5a81417c086edc8306 /src/savage_bci.h | |
parent | 10f319e43f77fef450aa723eff25bd200600c48d (diff) |
Avoid leading underscores in #include guards
In a user header file, the macro name should not begin with `_'
http://gcc.gnu.org/onlinedocs/cpp/Once_002dOnly-Headers.html
Signed-off-by: Tormod Volden <debian.tormod@gmail.com>
Diffstat (limited to 'src/savage_bci.h')
-rw-r--r-- | src/savage_bci.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/savage_bci.h b/src/savage_bci.h index 174a26b..9d8d656 100644 --- a/src/savage_bci.h +++ b/src/savage_bci.h @@ -1,6 +1,6 @@ -#ifndef _S3BCI_H_ -#define _S3BCI_H_ +#ifndef S3BCI_H +#define S3BCI_H /* BCI Control Register */ @@ -140,5 +140,4 @@ ((yp) ? 1<<15 : 0) | \ ((err) << 16)) - -#endif /* _S3BCI_H_ */ +#endif /* S3BCI_H */ |