diff options
author | Burt P <pburt0@gmail.com> | 2017-08-16 18:06:02 -0500 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2017-08-27 08:21:05 -0700 |
commit | ed11c87c2cc56fe40f6d4503cf0cc56e7ed841f7 (patch) | |
tree | d12a969685fc9d695a4e85d3ee9e2129e0ed7615 /modules/computer.c | |
parent | d9b1aa271b47c0a960a3112f6bbd9077222faa98 (diff) |
Create dmi_util.c and move *_util.c to hardinfo/
These stand alone interfaces and are used across modules, so just
make them available to any module by default.
Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'modules/computer.c')
-rw-r--r-- | modules/computer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/computer.c b/modules/computer.c index 05d27ba6..5f346733 100644 --- a/modules/computer.c +++ b/modules/computer.c @@ -33,7 +33,7 @@ #include "computer.h" -#include "devices.h" /* for dmi_get_str() */ +#include "dmi_util.h" /* for dmi_get_str() */ #include "dt_util.h" /* for dtr_get_string() */ #include "info.h" |