aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/getopt/small/last_getopt.cpp
blob: 42b1affef195ba9e05b0fe5c1e67cfc5bc3257bb (plain) (blame)
1
2
3
4
5
6
7
8
9
#include "last_getopt.h" 
 
namespace NLastGetopt {
    void PrintUsageAndExit(const TOptsParser* parser) { 
        parser->PrintUsage(); 
        exit(0); 
    } 

}