diff options
author | Don Ward <don2387ward@sprynet.com> | 2011-03-25 11:53:04 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2011-03-25 11:53:04 -0400 |
commit | 64dac6a1f62fb8484e879f0d20ee60bc02da179c (patch) | |
tree | 0e0ab0ad264a5af0d0f6256260295b8563179da5 /gnuradio-core/src/lib/runtime | |
parent | 34313eace681a82e230c38a8cd26c0001ee823ea (diff) |
Fixing missing include files and various other patches for Windows build issues.
Diffstat (limited to 'gnuradio-core/src/lib/runtime')
-rw-r--r-- | gnuradio-core/src/lib/runtime/gr_error_handler.cc | 1 | ||||
-rw-r--r-- | gnuradio-core/src/lib/runtime/gr_error_handler.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-core/src/lib/runtime/gr_error_handler.cc b/gnuradio-core/src/lib/runtime/gr_error_handler.cc index 6dbb0a5d26..4b4cdaceff 100644 --- a/gnuradio-core/src/lib/runtime/gr_error_handler.cc +++ b/gnuradio-core/src/lib/runtime/gr_error_handler.cc @@ -48,7 +48,6 @@ #include <assert.h> #include <stdexcept> #include <unistd.h> -#include <stdio.h> #ifdef HAVE_IO_H #include <io.h> diff --git a/gnuradio-core/src/lib/runtime/gr_error_handler.h b/gnuradio-core/src/lib/runtime/gr_error_handler.h index 530a2c23cf..aedb6f41fe 100644 --- a/gnuradio-core/src/lib/runtime/gr_error_handler.h +++ b/gnuradio-core/src/lib/runtime/gr_error_handler.h @@ -45,6 +45,7 @@ #include <stdarg.h> #include <string> +#include <cstdio> // for FILE /*! * \brief abstract error handler |