modernize header guards to #pragma once

This commit is contained in:
Peter SZTANOJEV
2013-10-14 13:21:15 +02:00
parent 27a7873066
commit 0301b24ace
51 changed files with 52 additions and 205 deletions

View File

@@ -15,8 +15,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
******************************************************************************/
#ifndef AUDIO_IO_H
#define AUDIO_IO_H
#pragma once
#include "../util/c99defs.h"
#include "media-io.h"
@@ -87,5 +86,3 @@ EXPORT void audio_output_close(audio_t audio);
#ifdef __cplusplus
}
#endif
#endif

View File

@@ -15,8 +15,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
******************************************************************************/
#ifndef MEDIA_IO_H
#define MEDIA_IO_H
#pragma once
/*
* Media input/output components used for connecting media outputs/inputs
@@ -73,5 +72,3 @@ EXPORT void media_close(media_t media);
#ifdef __cplusplus
}
#endif
#endif

View File

@@ -15,8 +15,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
******************************************************************************/
#ifndef VIDEO_IO_H
#define VIDEO_IO_H
#pragma once
#include "../util/c99defs.h"
#include "media-io.h"
@@ -65,5 +64,3 @@ EXPORT void video_output_close(video_t video);
#ifdef __cplusplus
}
#endif
#endif