tDP_ prefix added to all header file #ifdefs (used to prevent multiple inclusions) to reduce the risk of name clash with other projects. Comments added to the complementary #endifs where needed. - vaccinewars - be a doctor and try to vaccinate the world
git clone git://src.adamsgaard.dk/vaccinewars
Log
Files
Refs
README
LICENSE
---
commit 78cb669665c3bc332d64515a6fde236f81686eb4
parent 2d2efea65a3c9b61947c6d45895ae5cd44437744
Author: Ben Webb 
Date:   Sat,  4 May 2002 17:56:31 +0000

DP_ prefix added to all header file #ifdefs (used to prevent multiple
inclusions) to reduce the risk of name clash with other projects.
Comments added to the complementary #endifs where needed.


Diffstat:
  M src/sound.h                         |       6 +++---

1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/sound.h b/src/sound.h
t@@ -20,8 +20,8 @@
  *                   MA  02111-1307, USA.                               *
  ************************************************************************/
 
-#ifndef __SOUND_H__
-#define __SOUND_H__
+#ifndef __DP_SOUND_H__
+#define __DP_SOUND_H__
 
 #ifdef HAVE_CONFIG_H
 #include 
t@@ -30,4 +30,4 @@
 void SoundInit(void);
 void SoundClose(void);
 
-#endif /* __SOUND_H__ */
+#endif /* __DP_SOUND_H__ */