usr.bin/fmt/fmt.c
277
= get_positive(optarg, "output tab width must be positive", 1);
usr.bin/fmt/fmt.c
292
tab_width = get_positive(optarg, "tab width must be positive", 1);
usr.bin/fmt/fmt.c
295
goal_length = get_positive(optarg, "width must be positive", 1);
usr.bin/fmt/fmt.c
306
goal_length = get_positive(++p, "width must be nonzero", 1);
usr.bin/fmt/fmt.c
308
goal_length = get_positive(argv[optind]+1,
usr.bin/fmt/fmt.c
325
(goal_length = get_positive(*argv,"goal length must be positive", 0)) != 0) {
usr.bin/fmt/fmt.c
328
if (argc > 0 && (max_length = get_positive(*argv,"max length must be positive", 0)) != 0) {