diff options
author | Tom Tromey <tromey@adacore.com> | 2023-02-23 07:13:40 -0700 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2023-03-14 08:16:39 -0600 |
commit | c8a67010d133374dfb3b4ed88da7953702a2091d (patch) | |
tree | 6c45609b89ace1acc9d25757bc6bade2f5da5077 /gdb/gmp-utils.c | |
parent | 85c72d708e60b0da9dff4db4209e257245487d1d (diff) | |
download | gdb-c8a67010d133374dfb3b4ed88da7953702a2091d.zip gdb-c8a67010d133374dfb3b4ed88da7953702a2091d.tar.gz gdb-c8a67010d133374dfb3b4ed88da7953702a2091d.tar.bz2 |
Clean up gmp-utils.h includes
gmp-utils.h includes "defs.h", but normally the rule in gdb is that
the .c files include this first. This patch changes this code to
match the rest of gdb.
Diffstat (limited to 'gdb/gmp-utils.c')
-rw-r--r-- | gdb/gmp-utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/gmp-utils.c b/gdb/gmp-utils.c index b9c9b49..8150fa5 100644 --- a/gdb/gmp-utils.c +++ b/gdb/gmp-utils.c @@ -15,6 +15,7 @@ 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" #include "gmp-utils.h" /* See gmp-utils.h. */ |