summaryrefslogtreecommitdiffstats
path: root/tapset/builtin_printk.stp
blob: 81826849f133497c692aaea8304d52f1fd68b759 (plain)
1
2
3
4
5
6
7
function _printk (msg) %{
    printk (KERN_INFO "%s\n", THIS->msg);
%}

function printk (msg) {
    _printk (msg . "")
}