blob: 0c0a3ff7d5324c473715d4e0c574aae9162fe06d [file]
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the mingw-w64 runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
assert (argc >= 1);
assert (argv != NULL);
assert (argv[0] != NULL);
return 0;
}