Codebase list libmawk / e6ceb860-1bcc-4cc8-8ccb-412e0c97ee18/main tools / unwarn.sh
e6ceb860-1bcc-4cc8-8ccb-412e0c97ee18/main

Tree @e6ceb860-1bcc-4cc8-8ccb-412e0c97ee18/main (Download .tar.gz)

unwarn.sh @e6ceb860-1bcc-4cc8-8ccb-412e0c97ee18/mainraw · history · blame

#!/bin/sh

# This file is placed in the Public Domain.

# Comment all #warnings in a file given as $1.
# Useful on systems with CC with no support for #warning.

sed '
	/^#[ \t]*warning.*/ {
		s@^@/*@
		s@$@*/@
	}
' < "$1" > "$1.tmp" && mv "$1.tmp" "$1"