Files
nvidia-installer/gen-manpage-opts.c
Aaron Plattner 588f3d7f11 302.07
2012-05-02 08:06:32 -07:00

16 lines
283 B
C

/*
* Prints the option help in a form that is suitable to include in the manpage.
*/
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include "option_table.h"
#include "gen-manpage-opts-helper.h"
int main(void)
{
gen_manpage_opts_helper(__options);
return 0;
}