diff options
author | Pedro Alves <palves@redhat.com> | 2014-01-22 12:01:53 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2014-01-22 12:03:29 +0000 |
commit | 14e361d7aa3bbd8601b0457ee8558344e444c651 (patch) | |
tree | c30ca14d70cfe3b85e36321d6932de999485d228 /gdb/xtensa-config.c | |
parent | 16e4ecc0dbe114cfc97fe2cd32a035ae4c37f22b (diff) | |
download | gdb-14e361d7aa3bbd8601b0457ee8558344e444c651.zip gdb-14e361d7aa3bbd8601b0457ee8558344e444c651.tar.gz gdb-14e361d7aa3bbd8601b0457ee8558344e444c651.tar.bz2 |
xtensa-config.c: missing defs.h include.
All .c files must start by including defs.h.
2014-01-22 Pedro Alves <palves@redhat.com>
* xtensa-config.c: Include defs.h.
Diffstat (limited to 'gdb/xtensa-config.c')
-rw-r--r-- | gdb/xtensa-config.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/xtensa-config.c b/gdb/xtensa-config.c index 19a33bb..345b334 100644 --- a/gdb/xtensa-config.c +++ b/gdb/xtensa-config.c @@ -17,6 +17,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include "defs.h" + #define XTENSA_CONFIG_VERSION 0x60 #include "xtensa-config.h" |