aboutsummaryrefslogtreecommitdiff
path: root/scripts/indent
blob: 1693aff5739740138001adc3285f98aa2bb2c0d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11

#!/bin/sh

set -eu

if [ x"$(indent --version)" != x'FreeBSD indent 2.0' ]
then
	printf 'indent(1) version mismatch\n' >&2
	exit 1
fi

find . -name '*.c' -exec indent '{}' ';'