summaryrefslogtreecommitdiff
path: root/src/savage_streams.h
diff options
context:
space:
mode:
authorTormod Volden <debian.tormod@gmail.com>2011-12-04 23:36:19 +0100
committerTormod Volden <debian.tormod@gmail.com>2012-01-03 22:40:54 +0100
commit0600b7279382c66445506fa98dc50299574a1abd (patch)
treeb36367160a623acbb1e81f5a81417c086edc8306 /src/savage_streams.h
parent10f319e43f77fef450aa723eff25bd200600c48d (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_streams.h')
-rw-r--r--src/savage_streams.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/savage_streams.h b/src/savage_streams.h
index ad16ad7..9968a1a 100644
--- a/src/savage_streams.h
+++ b/src/savage_streams.h
@@ -1,6 +1,5 @@
-#ifndef __SAVAGE_STREAMS_H__
-
-# define __SAVAGE_STREAMS_H__
+#ifndef SAVAGE_STREAMS_H
+#define SAVAGE_STREAMS_H
/**************************************
S3 streams processor
@@ -220,4 +219,4 @@
#define SSTREAMS_MODE(bpp) (bpp > 16 ? (bpp > 24 ? STREAMS_MODE32 :\
STREAMS_MODE24) : STREAMS_MODE16)
-#endif /*__SAVAGE_STREAMS_H__*/
+#endif /* SAVAGE_STREAMS_H */