diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-12-20 15:23:20 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-12-20 15:23:20 +0000 |
commit | 7729b9ca037179944fee70711adc168d81b40029 (patch) | |
tree | 6636ab9b407f53ba78e2f93b75433b9995647e3d /docs | |
parent | e5ccb544a965457a8587eeaf2991cd05497adbfe (diff) | |
download | busybox-w32-7729b9ca037179944fee70711adc168d81b40029.tar.gz busybox-w32-7729b9ca037179944fee70711adc168d81b40029.tar.bz2 busybox-w32-7729b9ca037179944fee70711adc168d81b40029.zip |
Actually, static buffers look like _this_...
git-svn-id: svn://busybox.net/trunk/busybox@12957 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'docs')
-rw-r--r-- | docs/style-guide.txt | 2 |
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 | |||
445 | like this in code: | 445 | like 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 | ||
451 | The problem with these is that any time any busybox app is run, you pay a | 451 | The problem with these is that any time any busybox app is run, you pay a |