Use angle brackets (<>) rather than quotes ("") for the include
directives in our .h files. This should avoid some potentially nasty
surprises for Winelib apps.

diff --git a/include/wnaspi32.h b/include/wnaspi32.h
index 81cff58..0d87fcf 100644
--- a/include/wnaspi32.h
+++ b/include/wnaspi32.h
@@ -104,7 +104,7 @@
 #define SS_SECURITY_VIOLATION		0xE2 /* Replaces SS_INVALID_MODE */
 /*** END DEFS */
 
-#include "pshpack1.h"
+#include <pshpack1.h>
 
 /* SRB - HOST ADAPTER INQUIRY - SC_HA_INQUIRY */
 typedef struct tagSRB32_HaInquiry {
@@ -226,7 +226,7 @@
     DWORD AB_Reserved;		/* 0 */
 } ASPI32BUFF, *PASPI32BUFF;
 
-#include "poppack.h"
+#include <poppack.h>
 
 /* Prototypes */
 extern DWORD __cdecl SendASPI32Command (PSRB);