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;
}