xref: /freebsd/contrib/expat/run.sh.in (revision e9a994639b2af232f994ba2ad23ca45a17718d2b)
1#! /usr/bin/env bash
2# Copyright (C) 2017 Expat development team
3# Licensed under the MIT license
4
5case "@host@" in
6*-mingw*)
7    exec wine "$@"
8    ;;
9*)
10    exec "$@"
11    ;;
12esac
13