summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-08-13 10:36:25 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-08-13 10:36:25 +0000
commite324184c0509cc0db168ce29546e1b52800a79c6 (patch)
tree9d4f18b3cc1ab715b6ff91cc9e3e942d11dfc51f /docs
parent5f1b149d541ebba7cab841cb647f113248f9fb8f (diff)
downloadbusybox-w32-e324184c0509cc0db168ce29546e1b52800a79c6.tar.gz
busybox-w32-e324184c0509cc0db168ce29546e1b52800a79c6.tar.bz2
busybox-w32-e324184c0509cc0db168ce29546e1b52800a79c6.zip
s/#ifdef CONFIG_/#if ENABLE_/g
Diffstat (limited to 'docs')
-rw-r--r--docs/style-guide.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/style-guide.txt b/docs/style-guide.txt
index 381275a1d..7560d6986 100644
--- a/docs/style-guide.txt
+++ b/docs/style-guide.txt
@@ -377,13 +377,13 @@ used in the code.
377 377
378 (in .h header file) 378 (in .h header file)
379 379
380 #ifdef CONFIG_FEATURE_FUNKY 380 #if ENABLE_FEATURE_FUNKY
381 static inline void maybe_do_funky_stuff (int bar, int baz) 381 static inline void maybe_do_funky_stuff(int bar, int baz)
382 { 382 {
383 /* lotsa code in here */ 383 /* lotsa code in here */
384 } 384 }
385 #else 385 #else
386 static inline void maybe_do_funky_stuff (int bar, int baz) {} 386 static inline void maybe_do_funky_stuff(int bar, int baz) {}
387 #endif 387 #endif
388 388
389 (in the .c source file) 389 (in the .c source file)