diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-01-12 14:19:49 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-01-12 14:19:49 -0500 |
commit | 16e9019ef738c251ecfbed512c6835f0f0a424f7 (patch) | |
tree | c01b11eb7ad1f8bd4817a773eaa9c52853899dde /gdb/main.c | |
parent | 3f94e588596cdca710de71735127560788fd8770 (diff) | |
download | gdb-16e9019ef738c251ecfbed512c6835f0f0a424f7.zip gdb-16e9019ef738c251ecfbed512c6835f0f0a424f7.tar.gz gdb-16e9019ef738c251ecfbed512c6835f0f0a424f7.tar.bz2 |
gdb: move baud_rate and serial_parity declarations to serial.h
They are currently in target.h, it would make more sense to have them in
serial.h, since they are defined in serial.c.
gdb/ChangeLog:
* target.h (baud_rate, serial_parity): Move declarations...
* serial.h: ... here.
* main.c: Include serial.h.
* serial.c (baud_rate, serial_parity): Update doc.
Change-Id: Idc983c154c80ccc29b07ce68df3483cefe03fb71
Diffstat (limited to 'gdb/main.c')
-rw-r--r-- | gdb/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -54,6 +54,7 @@ #endif #include "gdbsupport/alt-stack.h" #include "observable.h" +#include "serial.h" /* The selected interpreter. This will be used as a set command variable, so it should always be malloc'ed - since |