diff options
author | Jerry Zhao <jerryz123@berkeley.edu> | 2022-12-15 15:29:43 -0800 |
---|---|---|
committer | Jerry Zhao <jerryz123@berkeley.edu> | 2022-12-15 17:07:35 -0800 |
commit | e1919d3b0666a149fbfa0514ba6d6ce40abdfdab (patch) | |
tree | e190714f44f235412c60edce438997bda318df63 /fesvr/syscall.cc | |
parent | 3b9a3f17ba14f6844afbb27212405d2bf5019257 (diff) | |
download | spike-e1919d3b0666a149fbfa0514ba6d6ce40abdfdab.zip spike-e1919d3b0666a149fbfa0514ba6d6ce40abdfdab.tar.gz spike-e1919d3b0666a149fbfa0514ba6d6ce40abdfdab.tar.bz2 |
Add config.h includes directly to source files instead of relying on header chaining
This step is to ensure that removing config.h out of headers will not cause regressions.
Diffstat (limited to 'fesvr/syscall.cc')
-rw-r--r-- | fesvr/syscall.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fesvr/syscall.cc b/fesvr/syscall.cc index 19c9f38..875ffb7 100644 --- a/fesvr/syscall.cc +++ b/fesvr/syscall.cc @@ -1,5 +1,6 @@ // See LICENSE for license details. +#include "config.h" #include "syscall.h" #include "htif.h" #include "byteorder.h" |