usr.bin/fmt/fmt.c
317
tab_width = get_positive(optarg, "tab width must be positive", 1);
usr.bin/fmt/fmt.c
320
goal_length = get_positive(optarg, "width must be positive", 1);
usr.bin/fmt/fmt.c
334
goal_length = get_positive(++p, "width must be nonzero", 1);
usr.bin/fmt/fmt.c
336
goal_length = get_positive(argv[optind] + 1,
usr.bin/fmt/fmt.c
364
&& (goal_length = get_positive(*argv, "goal length must be positive", 0))
usr.bin/fmt/fmt.c
369
&& (max_length = get_positive(*argv, "max length must be positive", 0))