diff mp3lib/mp3.h @ 30163:257ef2adfd66

Add multiple inclusion guards to all mp3lib headers.
author diego
date Mon, 04 Jan 2010 14:42:59 +0000
parents 7448d949d6b4
children
line wrap: on
line diff
--- a/mp3lib/mp3.h	Mon Jan 04 13:13:10 2010 +0000
+++ b/mp3lib/mp3.h	Mon Jan 04 14:42:59 2010 +0000
@@ -1,5 +1,8 @@
 /* MP3 Player Library 2.0      (C) 1999 A'rpi/Astral&ESP-team  */
 
+#ifndef MPLAYER_MP3LIB_MP3_H
+#define MPLAYER_MP3LIB_MP3_H
+
 /* decoder level: */
 #ifdef CONFIG_FAKE_MONO
 void MP3_Init(int fakemono);
@@ -33,3 +36,4 @@
 void MP3_Stop(void);
 void MP3_CloseDevice(void);
 
+#endif /* MPLAYER_MP3LIB_MP3_H */