From 28737ffcb575641e55b9ec9b04fe3e5c6e130141 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Wed, 19 Mar 2008 18:58:46 +0200 Subject: [PATCH] vlc_fixups.h: Protect against multiple inclusions --- include/vlc_fixups.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/vlc_fixups.h b/include/vlc_fixups.h index ca9c667925..22a287f0a6 100644 --- a/include/vlc_fixups.h +++ b/include/vlc_fixups.h @@ -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 */ -- 2.39.2