summary refs log tree commit diff stats
path: root/tinyc/win32/lib/dllcrt1.c
diff options
context:
space:
mode:
Diffstat (limited to 'tinyc/win32/lib/dllcrt1.c')
-rw-r--r--tinyc/win32/lib/dllcrt1.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/tinyc/win32/lib/dllcrt1.c b/tinyc/win32/lib/dllcrt1.c
deleted file mode 100644
index ba1dbd048..000000000
--- a/tinyc/win32/lib/dllcrt1.c
+++ /dev/null
@@ -1,13 +0,0 @@
-//+---------------------------------------------------------------------------
-
-#include <windows.h>
-
-BOOL WINAPI DllMain (HINSTANCE hDll, DWORD dwReason, LPVOID lpReserved);
-
-BOOL WINAPI _dllstart(HINSTANCE hDll, DWORD dwReason, LPVOID lpReserved)
-{
-	BOOL bRet;
-	bRet = DllMain (hDll, dwReason, lpReserved);
-	return bRet;
-}
-