commit | ff3651a2da21a316f9cf64c0dd881b0d8abc48ad | [log] [tgz] |
---|---|---|
author | Kevin O'Connor <kevin@koconnor.net> | Wed Jun 18 07:45:38 2008 -0400 |
committer | Kevin O'Connor <kevin@koconnor.net> | Wed Jun 18 07:45:38 2008 -0400 |
tree | 655a0637e7fc6321420a3ed29743f68ef711f855 | |
parent | f54c150090ff38a73ef64a5d20fdfa0d9c403972 [diff] |
Add header guard around pic.h This fixes compiling with AVOIDCOMBINE=1
diff --git a/src/pic.h b/src/pic.h index 0eb70ee..dc151a2 100644 --- a/src/pic.h +++ b/src/pic.h
@@ -4,6 +4,8 @@ // Copyright (C) 2002 MandrakeSoft S.A. // // This file may be distributed under the terms of the GNU GPLv3 license. +#ifndef __PIC_H +#define __PIC_H #include "ioport.h" // PORT_PIC* #include "util.h" // dprintf @@ -75,3 +77,5 @@ outb(~PIC1_IRQ2, PORT_PIC1_DATA); outb(~0, PORT_PIC2_DATA); } + +#endif // pic.h