mirror of
https://github.com/opnsense/src.git
synced 2026-04-29 18:32:49 -04:00
16 lines
172 B
C
16 lines
172 B
C
|
|
/*
|
||
|
|
* This file is in the public domain.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include <sys/cdefs.h>
|
||
|
|
|
||
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
int
|
||
|
|
main(int argc, char **argv __unused)
|
||
|
|
{
|
||
|
|
|
||
|
|
printf("%d\n", argc);
|
||
|
|
return (0);
|
||
|
|
}
|