commit | 56a3433ef559512e731a943d8af7965973d090df | [log] [tgz] |
---|---|---|
author | Tom Rini <trini@konsulko.com> | Mon Apr 19 16:18:49 2021 -0400 |
committer | Tom Rini <trini@konsulko.com> | Tue Apr 20 07:31:12 2021 -0400 |
tree | f8e520cd4ea4f2a776e65ab34342c8869300580e | |
parent | 9f4b53436c7385d4800645eb1158dd4d56cc32f4 [diff] |
sysinfo.h: Add re-inclusion guard Add #ifndef __SYSINFO_H__ ... #endif to prevent re-inclusion of this file. Signed-off-by: Tom Rini <trini@konsulko.com>
diff --git a/include/sysinfo.h b/include/sysinfo.h index 68fad25..8054d4d 100644 --- a/include/sysinfo.h +++ b/include/sysinfo.h
@@ -4,6 +4,9 @@ * Mario Six, Guntermann & Drunck GmbH, mario.six@gdsys.cc */ +#ifndef __SYSINFO_H__ +#define __SYSINFO_H__ + struct udevice; /* @@ -228,3 +231,4 @@ } #endif +#endif