to check if we mess it up. --HG-- rename : src/utilities/getopt.c => src/utilities/util_getopt.c
7 lines
150 B
Bash
7 lines
150 B
Bash
#! /bin/sh
|
|
|
|
# Complain if someone breaks getopt usage in the wt utility.
|
|
egrep -w 'opterr|optind|optopt|optreset|optarg' ../src/utilities/*.c
|
|
|
|
exit 0
|