From: RĂ©mi Denis-Courmont Date: Thu, 4 Sep 2008 19:39:04 +0000 (+0300) Subject: Protect against multiple inclusions X-Git-Tag: 1.0.0-pre1~3556 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=dc8228bbecbf727782f26b85cd4b7150c7a52359;p=vlc Protect against multiple inclusions --- diff --git a/include/vlc_mtime.h b/include/vlc_mtime.h index d8cfca94db..079f791dec 100644 --- a/include/vlc_mtime.h +++ b/include/vlc_mtime.h @@ -29,6 +29,9 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ +#ifndef __VLC_MTIME_H +# define __VLC_MTIME_H 1 + /***************************************************************************** * LAST_MDATE: date which will never happen ***************************************************************************** @@ -83,3 +86,4 @@ VLC_EXPORT( mtime_t, date_Get, ( const date_t * ) ); VLC_EXPORT( void, date_Move, ( date_t *, mtime_t ) ); VLC_EXPORT( mtime_t, date_Increment, ( date_t *, uint32_t ) ); VLC_EXPORT( uint64_t, NTPtime64, ( void ) ); +#endif /* !__VLC_MTIME_ */