Sign in
third-party-mirror
/
mingw-w64
/
518dd33c326f65684e8e938262b2a9ca94804cfb
/
.
/
mingw-w64-crt
/
tstwassert_win.c
blob: e6289ad79252ac8475ff78a387d576b6a7018d05 [
file
] [
log
] [
blame
]
#define
WIN32_LEAN_AND_MEAN
#include
<windows.h>
#include
<string.h>
#include
<assert.h>
int
WINAPI
WinMain
(
HINSTANCE hThisInstance
,
HINSTANCE hPrevInstance
,
LPSTR lpCmdLine
,
int
nCmdShow
)
{
int
argc
=
strlen
(
lpCmdLine
);
assert
(
argc
&
1
);
return
0
;
}