summaryrefslogtreecommitdiff
path: root/gr-fft
diff options
context:
space:
mode:
authorTom Rondeau <tom@trondeau.com>2013-11-10 08:32:19 -0500
committerTom Rondeau <tom@trondeau.com>2013-11-10 08:32:19 -0500
commit8c54c5960b1d967f8180708daadf11fa69c8bcf8 (patch)
treea5b24f7f66abe9183f1a58cc9a93e923e256bf41 /gr-fft
parent118b8e9db68e464fef5ac361fe5c421ef4419562 (diff)
fft: put include protections around window.h (fixes issue #610 reported by Sylvain Munaut).
Diffstat (limited to 'gr-fft')
-rw-r--r--gr-fft/include/gnuradio/fft/window.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/gr-fft/include/gnuradio/fft/window.h b/gr-fft/include/gnuradio/fft/window.h
index b7479f48fb..4a7fb44ff9 100644
--- a/gr-fft/include/gnuradio/fft/window.h
+++ b/gr-fft/include/gnuradio/fft/window.h
@@ -20,6 +20,9 @@
* Boston, MA 02110-1301, USA.
*/
+#ifndef INCLUDED_FFT_WINDOW_H
+#define INCLUDED_FFT_WINDOW_H
+
#include <gnuradio/fft/api.h>
#include <vector>
#include <cmath>
@@ -268,3 +271,5 @@ namespace gr {
} /* namespace fft */
} /* namespace gr */
+
+#endif /* INCLUDED_FFT_WINDOW_H */