Artifact ebf22f9f71f464a35091738cbf406522d733a15b:
- Executable file build/list-chkfiles.sh — part of check-in [92a0e45fc6] at 2004-10-26 13:19:56 on branch trunk — Updated man pages. Updated lc_process_files() to work. (user: rkeene, size: 401) [annotate] [blame] [check-ins using]
#! /bin/sh for file in *.[ch]; do if [ "${file}" = "compat.h" ]; then continue; fi if [ "${file}" = "config.h" ]; then continue; fi if [ "${file}" = "win32.h" ]; then continue; fi filelist="${filelist} ${file}" done ( grep ' HAVE_.*_H$' ${filelist} | sed 's@.*HAVE_\(.*_H\)@\1@;s@_H$@.h@;s@_@/@g' | dd conv=lcase 2>/dev/null | grep -v '^config.h$' echo 'time.h' echo 'sys/time.h' ) | sort -u