
1 Feb
2008
1 Feb
'08
2:34 p.m.
Author: diego Date: Fri Feb 1 15:34:36 2008 New Revision: 530 Log: Add multiple inclusion guards. Modified: src/trunk/nututils/nutmerge.h Modified: src/trunk/nututils/nutmerge.h ============================================================================== --- src/trunk/nututils/nutmerge.h (original) +++ src/trunk/nututils/nutmerge.h Fri Feb 1 15:34:36 2008 @@ -1,6 +1,9 @@ // (C) 2005-2006 Oded Shimon // This file is available under the MIT/X license, see COPYING +#ifndef NUTUTILS_NUTMERGE_H +#define NUTUTILS_NUTMERGE_H + #include <inttypes.h> #include <stdlib.h> #include <stdio.h> @@ -96,3 +99,5 @@ enum nutmerge_errors { err_vorbis_header, err_vorbis_packet, }; + +#endif // NUTUTILS_NUTMERGE_H