diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2016-10-04 20:54:49 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2016-10-04 20:54:49 +0000 |
commit | 710e7be2e23d98dbfc5ac28297a122dd135ca0c3 (patch) | |
tree | 604529ecca5ec94dc7fd258e753fb0c2abcf032f /skel2c | |
parent | 7118255f507c5b3f3ae663043547c6525b79a4d9 (diff) |
Diffstat (limited to 'skel2c')
-rw-r--r-- | skel2c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4,7 +4,7 @@ function noident(given) { return given; } BEGIN { havesection = 0; - version = "$Id: skel2c,v 1.3 2014/04/06 19:48:04 tom Exp $"; + version = "$Id: skel2c,v 1.4 2016/06/07 00:26:09 tom Exp $"; nsec = 0; ifdef = ""; printf "/* This file generated automatically using\n * %s\n */\n\n", @@ -42,10 +42,10 @@ BEGIN { havesection = 0; if (ifdef != "") { if (NF >= 2) { printf " \"#endif /* %s */\",\n", $2; - printf "#endif /* defined(%s) */\n", $2; + printf "#endif\t\t\t/* defined(%s) */\n", $2; } else { printf " \"#endif /* %s */\",\n", ifdef; - printf "#endif /* defined(%s) */\n", ifdef; + printf "#endif\t\t\t/* defined(%s) */\n", ifdef; } ifdef = ""; } else { |