Codebase list libmawk / run/a44f9aae-d910-4cd9-a598-4b5026f2a2f5/main tools / unwarn.sh
run/a44f9aae-d910-4cd9-a598-4b5026f2a2f5/main

Tree @run/a44f9aae-d910-4cd9-a598-4b5026f2a2f5/main (Download .tar.gz)

unwarn.sh @run/a44f9aae-d910-4cd9-a598-4b5026f2a2f5/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"