1#!/bin/sh
2
3# This filters GCC source before Doxygen can get confused by it;
4# this script is listed in the doxyfile.  The output is not very
5# pretty, but at least we get output that Doxygen can understand.
6#
7# $1 is a source file of some kind.  The source we wish doxygen to
8# process is put on stdout.
9
10dir=`dirname $0`
11python $dir/filter_params.py $1
12exit 0
13