#!/usr/bin/env bash

tempfile=/tmp/stripcomments$$.c
cat $* > $tempfile
gcc -dD -P -E -fpreprocessed $tempfile
rm $tempfile
