diff options
author | Timothy Gu <timothygu99@gmail.com> | 2016-01-28 18:00:33 -0800 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2016-01-28 19:49:48 -0800 |
commit | 44304ae3220f553d0b1458644e2a617ea1ad8d22 (patch) | |
tree | 90f08e24290d98cce881b05fce33fa9bcecbcea4 /compat | |
parent | 6bc610b39efed743a8616104ce59c860f20487ef (diff) | |
download | ffmpeg-streaming-44304ae3220f553d0b1458644e2a617ea1ad8d22.zip ffmpeg-streaming-44304ae3220f553d0b1458644e2a617ea1ad8d22.tar.gz |
all: Add missing header guards
Diffstat (limited to 'compat')
-rw-r--r-- | compat/va_copy.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/compat/va_copy.h b/compat/va_copy.h index 3cb5ebe..a40bbe6 100644 --- a/compat/va_copy.h +++ b/compat/va_copy.h @@ -19,6 +19,9 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#ifndef COMPAT_VA_COPY_H +#define COMPAT_VA_COPY_H + #include <stdarg.h> #if !defined(va_copy) && defined(_MSC_VER) @@ -27,3 +30,5 @@ #if !defined(va_copy) && defined(__GNUC__) && __GNUC__ < 3 #define va_copy(dst, src) __va_copy(dst, src) #endif + +#endif /* COMPAT_VA_COPY_H */ |