summaryrefslogtreecommitdiff
path: root/skel2c
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2016-10-04 20:54:49 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2016-10-04 20:54:49 +0000
commit710e7be2e23d98dbfc5ac28297a122dd135ca0c3 (patch)
tree604529ecca5ec94dc7fd258e753fb0c2abcf032f /skel2c
parent7118255f507c5b3f3ae663043547c6525b79a4d9 (diff)
Diffstat (limited to 'skel2c')
-rw-r--r--skel2c6
1 files changed, 3 insertions, 3 deletions
diff --git a/skel2c b/skel2c
index d6f9f590949b..d979359265c9 100644
--- a/skel2c
+++ b/skel2c
@@ -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 {