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_dri.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_dri.h')
-rw-r--r-- | src/savage_dri.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/savage_dri.h b/src/savage_dri.h index 214d985..36377c9 100644 --- a/src/savage_dri.h +++ b/src/savage_dri.h @@ -23,8 +23,8 @@ */ -#ifndef __SAVAGE_DRI_H__ -#define __SAVAGE_DRI_H__ +#ifndef SAVAGE_DRI_H +#define SAVAGE_DRI_H #include "drm.h" @@ -73,4 +73,4 @@ typedef struct { drm_handle_t xvmcSurfHandle; /* ? */ } SAVAGEDRIRec, *SAVAGEDRIPtr; -#endif +#endif /* SAVAGE_DRI_H */ |