diff softfloat.h @ 344:580fffa86f08 libavutil

add multiple inclusion guards to headers
author mru
date Sun, 17 Jun 2007 00:01:30 +0000
parents f21d1907d47c
children 86348ea795ad
line wrap: on
line diff
--- a/softfloat.h	Sat Jun 16 22:59:13 2007 +0000
+++ b/softfloat.h	Sun Jun 17 00:01:30 2007 +0000
@@ -19,6 +19,9 @@
  *
  */
 
+#ifndef AVUTIL_SOFTFLOAT_H
+#define AVUTIL_SOFTFLOAT_H
+
 #include <stdint.h>
 
 #define MIN_EXP -126
@@ -122,3 +125,5 @@
     if(v.exp >= 0) return v.mant <<  v.exp ;
     else           return v.mant >>(-v.exp);
 }
+
+#endif