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/accctrl.h b/include/accctrl.h
index 2710d0c..80041e7 100644
--- a/include/accctrl.h
+++ b/include/accctrl.h
@@ -19,7 +19,7 @@
 #ifndef __WINE_ACCCTRL_H
 #define __WINE_ACCCTRL_H
 
-#include "wtypes.h"
+#include <wtypes.h>
 
 #ifdef __cplusplus
 extern "C" {