]> git.sesse.net Git - vlc/commitdiff
vlc_fixups.h: Protect against multiple inclusions
authorRémi Denis-Courmont <rem@videolan.org>
Wed, 19 Mar 2008 16:58:46 +0000 (18:58 +0200)
committerRémi Denis-Courmont <rem@videolan.org>
Wed, 19 Mar 2008 16:58:46 +0000 (18:58 +0200)
include/vlc_fixups.h

index ca9c667925d844fa3a38c1e68e0464ee48b03c7d..22a287f0a6868091e10f133ef25dd3d2d97f5683 100644 (file)
@@ -24,6 +24,9 @@
  * This file is a collection of portability fixes
  */
 
+#ifndef LIBVLC_FIXUPS_H
+# define LIBVLC_FIXUPS_H 1
+
 #ifndef HAVE_STRDUP
 # define strdup vlc_strdup
 #endif
@@ -118,3 +121,4 @@ static struct tm *localtime_r (const time_t *timep, struct tm *result)
 }
 #endif
 
+#endif /* !LIBVLC_FIXUPS_H */