#!/bin/bash

if [ -x /usr/bin/xcrun ] ; then
    exec /usr/bin/xcrun /opt/local/libexec/llvm-17/bin/clang-include-fixer "${@}"
else
    exec /opt/local/libexec/llvm-17/bin/clang-include-fixer "${@}"
fi
