]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - gcc/d/dmd/root/port.h
Merge dmd upstream 6243fa6d2
[thirdparty/gcc.git] / gcc / d / dmd / root / port.h
index 3f3c46d9168983419fc838c77936fd8207227172..0dbb3197ad58b684a2334e222cc1f5ddb325fd72 100644 (file)
 // Portable wrapper around compiler/system specific things.
 // The idea is to minimize #ifdef's in the app code.
 
-#include <stdlib.h> // for alloca
-#include <stdint.h>
+#include "dsystem.h" // for alloca
 
 #if _MSC_VER
-#include <alloca.h>
 typedef __int64 longlong;
 typedef unsigned __int64 ulonglong;
 #else