Tag

  • Show log

    Commit

  • Hash : 9814e6a3
    Author : Christian Weisgerber
    Date : 2020-09-27T14:55:18

    prefer the BSD extension to reset getopt over the GNU one
    
    Sadly there is no portable way to reset getopt(3).
    BSD:    optind = 1; optreset = 1;
    GNU:    optind = 0;
    
    ok stsp