Home | History | Annotate | Line # | Download | only in nvi
      1  1.1  christos #!/bin/sh
      2  1.1  christos 
      3  1.1  christos for i
      4  1.1  christos do
      5  1.1  christos sed -e '/^#ifndef lint/ {
      6  1.1  christos i\
      7  1.1  christos #include <sys/cdefs.h>\
      8  1.1  christos #if 0
      9  1.1  christos }' -e '/^#endif.*not\ lint.*/ {
     10  1.1  christos a\
     11  1.1  christos #else\
     12  1.1  christos __RCSID("$NetBSD: addrcsid,v 1.1 2014/01/26 21:46:49 christos Exp $");\
     13  1.1  christos #endif
     14  1.1  christos }' $i > tmp$$ && mv tmp$$ $i
     15  1.1  christos done
     16