diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2012-12-06 12:15:58 +0100 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2012-12-19 08:31:31 +0100 |
| commit | cb9c377f54a756b04ef92c1c2e0453613ee863cf (patch) | |
| tree | db0ebf64a6b7bddd6cabc626d882402e60ffcab9 /host-utils.h | |
| parent | 7edd63f1b179c18f0f1a4664ddbabe4fe5b2be2f (diff) | |
| download | focaccia-qemu-cb9c377f54a756b04ef92c1c2e0453613ee863cf.tar.gz focaccia-qemu-cb9c377f54a756b04ef92c1c2e0453613ee863cf.zip | |
janitor: add guards to headers
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'host-utils.h')
| -rw-r--r-- | host-utils.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/host-utils.h b/host-utils.h index 821db93671..a5f8464fb2 100644 --- a/host-utils.h +++ b/host-utils.h @@ -22,6 +22,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ +#ifndef HOST_UTILS_H +#define HOST_UTILS_H 1 #include "compiler.h" /* QEMU_GNUC_PREREQ */ @@ -234,3 +236,5 @@ static inline int ctpop64(uint64_t val) return val; #endif } + +#endif |