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/sipbase.h b/include/sipbase.h
index a575b68..c49fa4f 100644
--- a/include/sipbase.h
+++ b/include/sipbase.h
@@ -19,6 +19,6 @@
 #ifndef __WINE_SIPBASE_H
 #define __WINE_SIPBASE_H
 
-#include "mssip.h"
+#include <mssip.h>
 
 #endif  /* __WINE_SIPBASE_H */