summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2005-12-20 15:23:20 +0000
committerRob Landley <rob@landley.net>2005-12-20 15:23:20 +0000
commit6a24976ceb6dc4421df04ebefaba25e4da6b4cca (patch)
tree6636ab9b407f53ba78e2f93b75433b9995647e3d /docs
parent6b903a2d8a76354078de536929e6a638c1f29330 (diff)
downloadbusybox-w32-6a24976ceb6dc4421df04ebefaba25e4da6b4cca.tar.gz
busybox-w32-6a24976ceb6dc4421df04ebefaba25e4da6b4cca.tar.bz2
busybox-w32-6a24976ceb6dc4421df04ebefaba25e4da6b4cca.zip
Actually, static buffers look like _this_...
Diffstat (limited to 'docs')
-rw-r--r--docs/style-guide.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/style-guide.txt b/docs/style-guide.txt
index 915d9b27d..d7d8e5ec7 100644
--- a/docs/style-guide.txt
+++ b/docs/style-guide.txt
@@ -445,7 +445,7 @@ First, some background to put this discussion in context: Static buffers look
445like this in code: 445like this in code:
446 446
447 /* in a .c file outside any functions */ 447 /* in a .c file outside any functions */
448 static char *buffer[BUFSIZ]; /* happily used by any function in this file, 448 static char buffer[BUFSIZ]; /* happily used by any function in this file,
449 but ick! big! */ 449 but ick! big! */
450 450
451The problem with these is that any time any busybox app is run, you pay a 451The problem with these is that any time any busybox app is run, you pay a