[BACK]Return to test-getsubopt.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Annotation of mandoc/test-getsubopt.c, Revision 1.1

1.1     ! kristaps    1: #if defined(__linux__) || defined(__MINT__)
        !             2: # define _GNU_SOURCE /* getsubopt() */
        !             3: #endif
        !             4:
        !             5: #include <stdlib.h>
        !             6:
        !             7: int
        !             8: main(int argc, char **argv)
        !             9: {
        !            10:        getsubopt(argv, argv, argv);
        !            11:        return 0;
        !            12: }

CVSweb