From: RĂ©mi Denis-Courmont Date: Wed, 19 Mar 2008 16:58:46 +0000 (+0200) Subject: vlc_fixups.h: Protect against multiple inclusions X-Git-Tag: 0.9.0-test0~1985 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=28737ffcb575641e55b9ec9b04fe3e5c6e130141;p=vlc vlc_fixups.h: Protect against multiple inclusions --- 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 */