summaryrefslogtreecommitdiffstats
path: root/development
diff options
context:
space:
mode:
author B. Watson2020-10-13 07:24:08 +0200
committer Willy Sudiarto Raharjo2020-10-17 04:39:46 +0200
commit50f0c9fc80c90b7314c63406a8953a5ae3b99b50 (patch)
treeaa1f4d9added9b102a0983ebd66fb11c9457fba2 /development
parent79260747de90fa1d0f296f77f7d1b1c8b3789b03 (diff)
downloadslackbuilds-50f0c9fc80c90b7314c63406a8953a5ae3b99b50.tar.gz
development/unifdef: Fix README.
Signed-off-by: B. Watson <yalhcru@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r--development/unifdef/README11
1 files changed, 6 insertions, 5 deletions
diff --git a/development/unifdef/README b/development/unifdef/README
index c233377f98..f041041cfe 100644
--- a/development/unifdef/README
+++ b/development/unifdef/README
@@ -1,13 +1,14 @@
unifdef (selectively processes C conditional compilation)
-The unifdef utility selectively processes conditional C preprocessor #if
-and #ifdef directives. It removes from a file both the directives and the
-additional text that they delimit, while otherwise leaving the file alone.
+The unifdef utility selectively processes conditional C preprocessor
+#if and #ifdef directives. It removes from a file both the directives
+and the additional text that they delimit, while otherwise leaving the
+file alone.
It is useful for avoiding distractions when studying code that uses
#ifdef heavily for portability: the author's original motivation was to
understand xterm's pty handling code. It can be used as a lightweight
preprocessor; for example the Linux kernel uses unifdef to strip out
#ifdef __KERNEL__ sections from the headers it exports to userland. You
-can use unifdef with languages other than C; for example UIT, a publisher
-in Cambridge, uses unifdef with LaTeX.
+can use unifdef with languages other than C; for example UIT, a
+publisher in Cambridge, uses unifdef with LaTeX.